-
Notifications
You must be signed in to change notification settings - Fork 0
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
67 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,31 @@ | ||
name: Because / Done when | ||
description: Create a generic issue using the `Because` / `Done When` format | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Please be as detailed as possible about this issue. | ||
- type: textarea | ||
id: because | ||
attributes: | ||
label: Because | ||
description: Briefly describe the context of the issue. A good starting point is the "User Story" format, outlined below. | ||
placeholder: Just because! | ||
value: | | ||
As a [role] | ||
When I [action] | ||
[result] | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: done-when | ||
attributes: | ||
label: Done when | ||
description: Describe the desired end result, or the steps needed to get there. | ||
placeholder: | | ||
"When will you make an end?" "When I'm finished!" | ||
value: '- [ ] ' |
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,36 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: '[Bug 🐛]: ' | ||
labels: [bug 🐛] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for taking the time to fill out this bug report! 🐜 | ||
|
||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: A bug happened! | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Describe the steps you took to produce the issue. | ||
placeholder: 1. ... | ||
value: | | ||
1. | ||
2. | ||
3. | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant logs | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell |