-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test failing and flaking issue templates
- Loading branch information
1 parent
d4629af
commit 52686d4
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Failing Test | ||
description: Report continuously failing tests or jobs in Metal3 CI | ||
body: | ||
- type: textarea | ||
id: jobs | ||
attributes: | ||
label: Which jobs are failing? | ||
placeholder: | | ||
Please only use this template for submitting reports about continuously failing tests or jobs in Metal3 CI. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: tests | ||
attributes: | ||
label: Which tests are failing? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: since | ||
attributes: | ||
label: Since when has it been failing? | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: Jenkins | ||
attributes: | ||
label: Jenkins link | ||
|
||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Reason for failure (if possible) | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Anything else we need to know? | ||
|
||
- type: textarea | ||
id: templateLabel | ||
attributes: | ||
label: Label(s) to be applied | ||
value: | | ||
/kind failing-test | ||
One or more /area label. See https://github.com/metal3-io/cluster-api-provider-metal3/labels for the list of labels. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Flaking Test | ||
description: Report flaky tests or jobs in Metal3 CI | ||
body: | ||
- type: textarea | ||
id: jobs | ||
attributes: | ||
label: Which jobs are flaking? | ||
description: | | ||
Please only use this template for submitting reports about flaky tests or jobs (pass or fail with no underlying change in code) in Metal3 CI. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: tests | ||
attributes: | ||
label: Which tests are flaking? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: since | ||
attributes: | ||
label: Since when has it been flaking? | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: Jenkins | ||
attributes: | ||
label: Jenkins link | ||
|
||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Reason for failure (if possible) | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Anything else we need to know? | ||
|
||
- type: textarea | ||
id: templateLabel | ||
attributes: | ||
label: Label(s) to be applied | ||
value: | | ||
/kind flake | ||
One or more /area label. See https://github.com/metal3-io/cluster-api-provider-metal3/labels for the list of labels. |