Add Issues templates

This commit is contained in:
h3r0 2023-11-07 18:04:07 +00:00 committed by GitHub
parent 0a8692abb6
commit c5c044ae0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 136 additions and 1 deletions

80
.github/ISSUE_TEMPLATE/bug_report.yaml vendored Normal file
View File

@ -0,0 +1,80 @@
name: Bug Report
description: File a bug report
title: "[BUG]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thank you for taking your time to file a bug report! Please fill out the following information to help us fix the bug
- type: textarea
id: describe-bug
validations:
required: true
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
placeholder: I was trying to do X, but Y happened instead
- type: textarea
id: steps-to-reproduce
validations:
required: true
attributes:
label: Steps to reproduce
description: Steps to reproduce the behavior
value: |
1.
2.
3.
4.
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
- type: textarea
id: expected-behavior
validations:
required: true
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen
placeholder: I expected Z to happen.
- type: textarea
id: environment
validations:
required: true
attributes:
label: Environment
description: |
Please fill out the following information. You can find your OS build number and version by running `winver` in the Run dialog
value: |
- OS Build Number & Edition: `type here`
- ReviOS Version: `type here`
- Specs: `type here`
placeholder: |
- OS Build Number & Edition: `19045.3633, Home`
- ReviOS version: `23.10`
- Specs: `PC, Intel Core i5-10400, 16GB RAM, NVIDIA GeForce GTX 1650`
- type: textarea
id: additional-info
attributes:
label: Additional information
description: |
Add any other context about the problem here
placeholder: |
I disabled Windows Defender, but it is still running after reboot.
- type: checkboxes
id: search-before-submit
attributes:
label: Have you searched for similar issues?
description: Make sure to look up for similar issues before submitting a new one and the [documentation](https://revi.cc/docs) on the Revision website
options:
- label: I have searched for similar issues and found none.
required: true

8
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Questions and Discussions
url: https://github.com/meetrevision/playbook/discussions
about: For general questions or technical support, please use the Discussions page
- name: Discord
url: https://discord.gg/962y4pU
about: Join our Discord server to chat with the community and get technical support

View File

@ -0,0 +1,44 @@
name: Feature Request
description: Suggest an idea for this project
title: "[FEATURE]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thank you for taking your time to file a feature request! Please fill out the following information to help us implement the feature
- type: textarea
id: description
validations:
required: true
attributes:
label: Description
description: A clear and concise description
placeholder: Add a feature that does X.
- type: textarea
id: benefit
validations:
required: true
attributes:
label: Benefit
description: Explain how this feature will benefit the users or the project
placeholder: This feature will improve...
- type: textarea
id: implementation
validations:
required: false
attributes:
label: Implementation (Optional)
description: Explain how this feature will be implemented
placeholder: This feature will be implemented by...
- type: checkboxes
id: search-before-submit
attributes:
label: Have you searched for similar feature requests?
options:
- label: I have searched for similar feature requests and found none.
required: true

View File

@ -13,5 +13,8 @@
"!powerShell: mapping",
"!writeStatus: mapping"
],
"redhat.telemetry.enabled": false
"redhat.telemetry.enabled": false,
"yaml.schemas": {
"https://json.schemastore.org/github-issue-config.json": "file:///workspaces/playbook/.github/ISSUE_TEMPLATE/config.yml"
}
}