From 9351a015f3b2a4152f471637cbee86713ae03184 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Fri, 11 Oct 2024 23:37:52 +0900 Subject: [PATCH] Add issue template --- .github/ISSUE_TEMPLATE/bug_report.yml | 81 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yml | 73 +++++++++++++++++++ 3 files changed, 155 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..d620dae2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,81 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: (Please note that the title must be in English.)" +assignees: + - misyaguziya +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: checkboxes + id: debug-tips + attributes: + label: Debug Tips + description: To improve debug efficiency, please read [Issues of README](https://github.com/misyaguziya/VRCT/issues) first. + options: + - label: I'm sure I've read this project's Issues of README. + required: true + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: input + id: app-version + attributes: + label: APP Version + description: What version of App are you running? + placeholder: Tell us what you see! + validations: + required: true + - type: dropdown + id: runtime-environment + attributes: + label: Runtime Environment + description: What runtime environment(OS) are you running? + options: + - "Windows 10" + - "Windows 11" + - "Other" + validations: + required: true + - type: input + id: region + attributes: + label: Country/Region + description: What Country(Region) are you running? + placeholder: Tell us what you see! + value: "Qatar (example)" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste the relevant log output. Error logs are generated in the folder where VRCT.exe is stored. + render: sh + validations: + required: false + - type: textarea + id: screenshot + attributes: + label: "Screenshots" + description: If applicable, add screenshots to help explain your problem. + value: | + ![DESCRIPTION](LINK.png) + render: Markdown + validations: + required: false + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/misyaguziya/VRCT/blob/master/LICENSE) + options: + - label: I agree to follow this project's Code of Conduct + 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 00000000..ec4bb386 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..163a6b70 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,73 @@ +name: Feature Request +description: File a feature request +title: "[Feature]: (Please note that the title must be in English)" +assignees: + - misyaguziya +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: textarea + id: expect-to-happened + attributes: + label: Expect to happened + description: What happened, and what did you expect to happen? + placeholder: Tell us what you see! + value: "A feature I have expected ..." + validations: + required: true + - type: dropdown + id: expected-app-version + attributes: + label: Expected APP Version + description: What version of App did you expect? + options: + - next newest version + - a future version + validations: + required: true + - type: dropdown + id: expected-runtime-environment + attributes: + label: Expected Runtime Environment + description: What runtime environment(OS) did you expect? + options: + - "Windows 10" + - "Windows 11" + - "Other" + validations: + required: true + - type: input + id: region + attributes: + label: Country/Region + description: What Country(Region) did you expect? + placeholder: Tell us what you see! + value: "Qatar(example)" + validations: + required: true + - type: textarea + id: expected-output + attributes: + label: Expected Output + render: sh + validations: + required: false + - type: textarea + id: screenshot + attributes: + label: "Sharing features in images" + value: | + ![DESCRIPTION](LINK.png) + render: Markdown + validations: + required: false + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/misyaguziya/VRCT/blob/master/LICENSE) + options: + - label: I agree to follow this project's Code of Conduct + required: true \ No newline at end of file