-
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 (#1559)
- Loading branch information
Showing
2 changed files
with
75 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,75 @@ | ||
name: Bug Report | ||
description: Report a problem with Shoreline | ||
labels: ['bug', 'status: pending'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Hello! Use this template if you had trouble using our library and want to share it with the community. If this doesn't look right, choose another template. | ||
- 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: Describe 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: input | ||
id: reproducible-example | ||
attributes: | ||
label: Reproducible Example | ||
description: Provide a reduced test case with the [Shoreline sandbox template](). | ||
- type: textarea | ||
id: suggested-solution | ||
attributes: | ||
label: Suggested solution | ||
description: Describe how could the bug could be solved or what changes would need to be made. Provide the links, for example from a Figma file or a CodeSandbox, or code snippets that apply to your solution. | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
- type: dropdown | ||
id: package | ||
attributes: | ||
label: Package | ||
multiple: true | ||
options: | ||
- '@vtex/shoreline' | ||
- '@vtex/shoreline-primitives' | ||
- '@vtex/shoreline-ts-table' | ||
- '@vtex/shoreline-stylelint' | ||
- '@vtex/shoreline-codemod' | ||
- '@vtex/shoreline-icons' | ||
- type: textarea | ||
id: packages-version | ||
attributes: | ||
label: Packages version | ||
- type: input | ||
id: browser | ||
attributes: | ||
label: Browser | ||
- type: dropdown | ||
id: package-manager | ||
attributes: | ||
label: Package Manager | ||
options: | ||
- pnpm | ||
- npm | ||
- yarn | ||
- bun | ||
default: 0 |