Skip to content

Commit

Permalink
docs: Change regression report to use form (#9623)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <[email protected]>
  • Loading branch information
alexec committed Sep 20, 2022
1 parent de7862e commit ecdeedd
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ body:
id: version
attributes:
label: Version
value: e.g. v3.3.8 or latest
placeholder: e.g. v3.3.8 or latest
validations:
required: true
- type: textarea
Expand Down
44 changes: 0 additions & 44 deletions .github/ISSUE_TEMPLATE/regression.md

This file was deleted.

49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/regression.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Regression report
description: Create a regression report. Not for support requests.
labels: [ bug, regression ]

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 guide](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
value: 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
value: kubectl logs -c wait -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded
validations:
required: true

0 comments on commit ecdeedd

Please sign in to comment.