This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
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 #206 from PSGitHubUser1/main
Added Issue Templates
- Loading branch information
Showing
3 changed files
with
76 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,46 @@ | ||
name: Bug report | ||
description: Create a report to help us improve (search for duplicates first) | ||
labels: bug | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Issue description | ||
description: Explain clearly and unambiguously what went wrong | ||
placeholder: | | ||
Tell us here about the bug/problem | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: How to reproduce this issue? | ||
description: Try to explain what you did for the bug to occur. A good explanation of steps to reproduce helps us locate the bug faster. If applicable, add screenshots to help explain your problem. | ||
placeholder: | | ||
Step 1: ... | ||
Step 2: ... | ||
... | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: To understand the issue, we need some details of your setup & system | ||
placeholder: | | ||
Version: v1.12.2 / v1.9 ...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: | ||
placeholder: | | ||
[example_log.txt / example_log.md ...] | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
attributes: | ||
label: Issue tracker rule checks (please read carefully) | ||
options: | ||
- label: "I have checked that my problem <a href='https://github.com/builtbybel/ThisIsWin11/issues' target='_blank'>is not already reported</a>" | ||
required: true | ||
- label: "I have checked that my problem is not already fixed" | ||
required: true |
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 @@ | ||
blank_issues_enabled: false |
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,29 @@ | ||
name: Request a Feature | ||
description: Create a report to help us improve (search for duplicates first) | ||
labels: enhancement | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
description: Explain clearly | ||
placeholder: | | ||
Tell us here about the feature | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: Provide logs | ||
placeholder: | | ||
example_log.txt | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
attributes: | ||
label: Issue tracker rule checks (please read carefully) | ||
options: | ||
- label: "I have checked that this feature <a href='https://github.com/builtbybel/ThisIsWin11/issues' target='_blank'>is not already asked.</a>" | ||
required: true | ||
- label: "I have checked that this feature is not already implemented" | ||
required: true | ||
|