-
-
Notifications
You must be signed in to change notification settings - Fork 83
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 (#172)
* chore: add bug report issue template * chore: add vite to issue template info command Co-authored-by: Christian Preston <christianpreston@ymail.com> --------- Co-authored-by: Christian Preston <christianpreston@ymail.com>
- Loading branch information
1 parent
d5774ac
commit 4d0c622
Showing
1 changed file
with
40 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,40 @@ | ||
name: "\U0001F41E Bug report" | ||
description: Report an issue with @vueuse/motion | ||
labels: ['pending triage'] | ||
body: | ||
- type: textarea | ||
id: bug-env | ||
attributes: | ||
label: System info | ||
description: Output of `npx envinfo --system --npmPackages '{vue,vite,@vueuse/*}' --binaries --browsers` or `npx nuxi info` when using nuxt. | ||
placeholder: System, Binaries, Browsers | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: Please provide a link to a repo or [stackblitz](https://stackblitz.com/edit/vitejs-vite-rptfks/) that can reproduce the problem you ran into. A [**minimal reproduction**](https://stackoverflow.com/help/minimal-reproducible-example) is required. | ||
placeholder: Reproduction | ||
validations: | ||
required: true | ||
- 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: additonal | ||
attributes: | ||
label: Additional context | ||
description: If applicable, add any other context about the problem here | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: | | ||
Optional if provided reproduction. Please try not to insert an image but copy paste the log text. | ||
render: shell-script |