-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from kalix127/chore/update-issue-templates
chore: update issue templates
- Loading branch information
Showing
4 changed files
with
87 additions
and
59 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,61 @@ | ||
name: 🐞 Bug report | ||
description: Create a report to help us improve | ||
labels: [bug] | ||
title: "[BUG]: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
This form is only for submitting bug reports. If you have a usage question | ||
or are unsure if this is really a bug, make sure to: | ||
- Check if there's already an existing issue for this bug in [Issues](https://github.com/unovue/inspira-ui/issues) | ||
- Ask on [GitHub Discussions](https://github.com/unovue/inspira-ui/discussions) if you're unsure | ||
- type: textarea | ||
id: bug-env | ||
attributes: | ||
label: Environment | ||
description: Output of `npx envinfo --system --npmPackages vue,@vueuse/core,radix-vue,nuxt,@vueuse/motion --binaries --browsers` | ||
placeholder: Environment | ||
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: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: Steps to reproduce the behavior. | ||
placeholder: Reproduction | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: If applicable, add any other context about the problem here | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: | | ||
If applicable, add screenshots to help explain your problem. | ||
- 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 | ||
- type: checkboxes | ||
id: checkboxes | ||
attributes: | ||
label: Additional information | ||
description: Please let us know if you'd be interested in contributing to the solution. This helps us better coordinate with potential contributors. | ||
options: | ||
- label: Would you be willing to fix this bug? |
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,26 @@ | ||
name: Feature request | ||
description: Suggest a feature that will improve inspira-ui | ||
labels: [add-request-feature] | ||
title: "Feature request: " | ||
body: | ||
- type: textarea | ||
id: solution-description | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you think would be a helpful addition to inspira-ui, including the possible use cases and alternatives you have considered. If you have a working prototype or module that implements it, please include a link. | ||
placeholder: Solution description | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: | | ||
Add any other context or screenshots about the feature request here. | ||
- type: checkboxes | ||
id: additional-info | ||
attributes: | ||
label: Additional information | ||
description: Additional information that helps us decide how to proceed. | ||
options: | ||
- label: Would you be willing to help implement this feature? |