-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use configurable issue templates (#97)
- Loading branch information
Showing
4 changed files
with
84 additions
and
41 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,49 @@ | ||
name: "Bug report" | ||
about: "Create a report to help us improve" | ||
labels: ["bug/triage"] | ||
type: "bug" | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to report an issue with AutoClicker. | ||
Use this template to notify us if you found a bug. | ||
- type: textarea | ||
attributes: | ||
label: "Describe the bug" | ||
description: "A clear description of what the bug is" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Steps to Reproduce" | ||
description: "Detailed steps to reproduce the bug." | ||
value: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Expected behavior" | ||
description: "A clear description of what you expected to happen." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Actual behavior" | ||
description: "A clear description of what actually happens." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Screenshots" | ||
description: "If applicable, add screenshots to help explain your problem." |
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,35 @@ | ||
name: "Feature request" | ||
about: "Suggest an idea for this project" | ||
labels: ["area/enhancements"] | ||
type: "enhancement" | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for suggesting a new feature! Please use this template to describe your idea clearly. | ||
- type: textarea | ||
attributes: | ||
label: "Describe the feature you’re missing or the problem you want to solve." | ||
description: "Provide a clear description of what the problem is or what kind of feature you're missing." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Describe the solution you'd like" | ||
description: "A clear description of what you want to happen with this feature." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Describe alternatives you've considered" | ||
description: "A clear description of any alternative solutions or features you've considered." | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: "Additional context" | ||
description: "Add any other context or screenshots about the feature request here." |