-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Issue Templates for better readeable reports.
- Loading branch information
1 parent
796db2b
commit 2fb63be
Showing
3 changed files
with
68 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,45 @@ | ||
name: Bug report | ||
description: Report errors or unexpected behavior | ||
title: "[Bug]" | ||
labels: [bug] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: π Is there already an issue for your problem? | ||
description: Please make sure you are not creating an already submitted <a href="https://github.com/Valthrun/Valthrun/issues">Issue</a>. Also check closed issue. | ||
options: | ||
- label: I have checked older issues, open and closed | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: βΉ Environment / Computer Info | ||
description: | | ||
Please provide the details of version installed. | ||
value: | | ||
- Controller version: (You can find this at the first log of controller.exe) | ||
- Describe the driver used: (e.g Kernel, Zenith, Usermode) | ||
- Grapic Card Used: (e.g AMD; Nvidia; Intel; Integrated Grapic Cards ~ Specific.) | ||
placeholder: | | ||
- Controller version: (You can find this at the first log of controller.exe) | ||
- Describe the driver used: (e.g Kernel, Zenith, Usermode) | ||
- Grapic Card Used: (e.g AMD; Nvidia; Intel; Integrated Grapic Cards ~ Specific.) | ||
render: Markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: π Description | ||
description: | | ||
List steps to reproduce the error and details on what happens and what you expected to happen. | ||
placeholder: | | ||
1. Please number your steps to helps the readability of your instructions. | ||
Feel free to write down additional notes you may want us to know. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: πΈ Screenshots | ||
description: Place any screenshots of the issue here if needed | ||
validations: | ||
required: 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 @@ | ||
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,22 @@ | ||
name: Feature Request | ||
description: Request a new feature or enhancement | ||
title: "[Enhancement]" | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: π Provide a description of the new feature | ||
description: What is the expected behavior of the proposed feature? What is the scenario this would be used? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-information | ||
attributes: | ||
label: β Additional Information | ||
description: Give us some additional information on the feature request like proposed solutions, links, screenshots, etc. | ||
|
||
- type: markdown | ||
attributes: | ||
value: If you'd like to see this feature implemented, add a π reaction to this post. |