Skip to content

Commit

Permalink
docs: Change the bug report template to be a form. Fixes argoproj#9556 (
Browse files Browse the repository at this point in the history
argoproj#9616)

Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: juchao <[email protected]>
  • Loading branch information
alexec authored and juchaosong committed Nov 3, 2022
1 parent 0b21cd6 commit 9b58a3f
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 47 deletions.
47 changes: 0 additions & 47 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Reproducible bug report
description: Create a reproducible bug report. Not for support requests.
labels: [ bug ]
body:
- type: checkboxes
id: terms
attributes:
label: Pre-requisites
options:
- label: I have double-checked my configuration
required: true
- label: I can confirm the issues exists when I tested with `:latest`
required: true
- label: I'd like to contribute the fix myself (see [CONTRIBUTING.md](https://github.com/argoproj/argo-workflows/blob/master/docs/CONTRIBUTING.md))
- type: textarea
id: description
attributes:
label: What happened/what you expected to happen?
validations:
required: true
- type: input
id: version
attributes:
label: Version
placeholder: e.g. v3.3.8 or latest
validations:
required: true
- type: textarea
id: failing-workflow
attributes:
label: Paste a small workflow that reproduces the issue. We must be able to run the workflow; don't enter a workflows that uses private images.
render: YAML
validations:
required: true
- type: textarea
id: controller-logs
attributes:
label: Logs from the workflow controller
placeholder: kubectl logs -n argo deploy/workflow-controller | grep ${workflow}
validations:
required: true
- type: textarea
id: wait-logs
attributes:
label: Logs from in your workflow's wait container
placeholder: kubectl logs -c wait -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded
validations:
required: true

0 comments on commit 9b58a3f

Please sign in to comment.