forked from CorentinTh/it-tools
-
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.
chore(issues): improved bug issue template (CorentinTh#1046)
- Loading branch information
1 parent
2c2fb21
commit a799234
Showing
2 changed files
with
48 additions
and
34 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,48 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
labels: ['bug', 'triage'] | ||
assignees: | ||
- CorentinTh | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! | ||
placeholder: Bug description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? If you have a screenshot, you can paste it here. | ||
placeholder: Tell us what you see! | ||
value: 'A bug happened!' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: System information | ||
description: What is you environment? You can use the `npx envinfo --system --browsers` command to get this information. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: app-type | ||
attributes: | ||
label: Where did you encounter the bug? | ||
options: | ||
- Public app (it-tools.tech) | ||
- Self hosting | ||
- Other (installations, docker, etc.) | ||
validations: | ||
required: true |