-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
60 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,34 @@ | ||
name: Bug Report | ||
description: Report an issue you come across in this project | ||
labels: ["bug", "triage", "review"] | ||
body: | ||
- type: checkboxes | ||
id: check | ||
attributes: | ||
label: Original | ||
description: Be sure that a change related to this issue isn't already pending, and a similar issue does not exist. | ||
options: | ||
- label: My issue is original | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Give a detailed description on the bug you are experiencing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Reproduction | ||
description: A bullet-pointed list in the order to reproduce the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Output | ||
description: Copy the exact error, and omit the date + time prefixes if any. | ||
render: shell | ||
validations: | ||
required: true |
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,26 @@ | ||
name: Enhancement | ||
description: Request a feature that you think would be nice to include in this project | ||
labels: ["enhancement", "review"] | ||
body: | ||
- type: checkboxes | ||
id: check | ||
attributes: | ||
label: Original | ||
description: Be sure that a change related to this issue isn't already pending, and a similar issue does not exist. | ||
options: | ||
- label: My issue is original | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Give a detailed description on the feature you're proposing. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Objective | ||
description: What should this feature achieve, and why should it be added? | ||
validations: | ||
required: true |