-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Proposal for 🐛 Bug Report Issue Form (#29)
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
- Loading branch information
Showing
1 changed file
with
43 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,43 @@ | ||
name: "🐛 Bug Report" | ||
description: Report an issue with the extension or possible visual bug. | ||
labels: [ | ||
"bug" | ||
] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
``` | ||
╭─────╮ | ||
│ ◠ ◡ ◠ Thank you for reporting your issue! | ||
╰─────╯ | ||
``` | ||
- type: input | ||
id: location | ||
attributes: | ||
label: "🔎 Issue Location" | ||
description: Please indicate where in the window the issue occurs. | ||
placeholder: Scrollbar, editor, menubar, semantic highlighting, etc... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "📝 Issue Description" | ||
description: Please describe the issue. | ||
placeholder: Description of your observation... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: "🤔 Expected Behavior" | ||
description: Please describe what the expected behavior should be. | ||
placeholder: When viewing this part of the editor, I would expect... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: "📋 Additional Information" | ||
description: Please provide any additional information you can provide (images, logs, etc.). Please wrap logs in backticks for readability. |