-
Notifications
You must be signed in to change notification settings - Fork 74
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
4 changed files
with
71 additions
and
56 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,42 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: "bug: " | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: scenario | ||
attributes: | ||
label: Scenario | ||
description: Describe the scenario in which you encountered the bug | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Actual result | ||
description: Describe what actually happened | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected result | ||
description: Describe what you expected to happen | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: criteria | ||
attributes: | ||
label: Acceptance criteria | ||
description: Describe the acceptance criteria(s) for this bug | ||
value: | | ||
- [ ] | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: contribute | ||
attributes: | ||
label: Contribute | ||
description: Would you like to fix this bug? | ||
options: | ||
- label: Yes |
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
name: Feature Request | ||
description: Suggest a new idea for this project | ||
title: "feat: " | ||
labels: ["feature"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Describe the feature you are requesting | ||
placeholder: "As **[the actor]**, I want **[the something]** so I can **[the goal]**" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: criteria | ||
attributes: | ||
label: Acceptance criteria | ||
description: Describe the acceptance criteria(s) for this bug. | ||
value: | | ||
- [ ] | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: contribute | ||
attributes: | ||
label: Contribute | ||
description: Would you like to contribute to this feature? | ||
options: | ||
- label: Yes |