Nothing Special   »   [go: up one dir, main page]

Skip to content

Commit

Permalink
Implement Issue Templates for better readeable reports.
Browse files Browse the repository at this point in the history
  • Loading branch information
wqq-z authored and WolverinDEV committed Nov 16, 2024
1 parent 796db2b commit 2fb63be
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/bug_report.yaml
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
1 change: 1 addition & 0 deletions .github/workflows/ISSUE_TEMPLATE/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
22 changes: 22 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/feature_request.yaml
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.

0 comments on commit 2fb63be

Please sign in to comment.