From c5c044ae0a0ecfcc96ac13b46a2c21d8f84da6ac Mon Sep 17 00:00:00 2001 From: h3r0 <50238852+melo936@users.noreply.github.com> Date: Tue, 7 Nov 2023 18:04:07 +0000 Subject: [PATCH] Add Issues templates --- .github/ISSUE_TEMPLATE/bug_report.yaml | 80 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 +++ .github/ISSUE_TEMPLATE/feature_request.yaml | 44 ++++++++++++ .vscode/settings.json | 5 +- 4 files changed, 136 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000..97ea361 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -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 \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..78c93ea --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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 \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000..dbed745 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -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 \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 1a5dc14..67e054e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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" + } } \ No newline at end of file