-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add Bug Report issue template
- Loading branch information
1 parent
313dbd8
commit 270983e
Showing
2 changed files
with
63 additions
and
39 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,63 @@ | ||
name: Bug Report | ||
description: Report a problem with Shoreline | ||
labels: ['bug', 'status: pending'] | ||
body: | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Summary | ||
description: Provide a short description of the problem. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
- type: textarea | ||
id: current-behavior | ||
attributes: | ||
label: Current behavior | ||
description: What happens instead of the expected behavior? If applicable, add screenshots/videos to help explain the problem. | ||
value: | | ||
Wrap animated gifs/videos in a details tag: | ||
<details> | ||
<summary>Summary of your gif(s)</summary> | ||
<img src="..." alt="Description of what the gif shows"> | ||
</details> | ||
- type: textarea | ||
id: reproducible-example | ||
attributes: | ||
label: Reproducible Example | ||
description: Provide a reduced test case with the [Shoreline sandbox template](). | ||
value: | | ||
[Link to sandbox]() | ||
- type: textarea | ||
id: suggested-solution | ||
attributes: | ||
label: Suggested solution | ||
description: How could we solve this bug? What changes would need to made? | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
- type: input | ||
id: shoreline-package-version | ||
attributes: | ||
label: Shoreline package version | ||
- type: input | ||
id: browser | ||
attributes: | ||
label: Browser | ||
- type: dropdown | ||
id: package-manager | ||
attributes: | ||
label: Package Manager | ||
options: | ||
- pnpm | ||
- npm | ||
- yarn | ||
default: 0 | ||
validations: | ||
required: true |