From dd06c7918972b95dd19f26d1c7011b41aa45629d Mon Sep 17 00:00:00 2001 From: Hendrix-Shen Date: Sat, 29 Jan 2022 23:58:46 +0800 Subject: [PATCH] Add issue template --- .github/ISSUE_TEMPLATE/bug_report.yml | 75 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 23 +++++++ .github/ISSUE_TEMPLATE/question.yml | 26 ++++++++ 3 files changed, 124 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/question.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..04176cc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,75 @@ +name: Bug Report +description: Create a report to help us improve. +title: "[Bug] " +labels: ["bug"] +body: + - type: markdown + attributes: + value: "**Note: Please search for existing issues before reporting where possible to avoid duplicate reporting.**" + - type: input + id: version_version + attributes: + label: Minecraft Version + description: | + The version of Minecraft you are running? + validations: + required: true + - type: input + id: pca_version + attributes: + label: Plusls Carpet Addition Version + description: | + The version of Plusls Carpet Addition you are running? + validations: + required: true + - type: input + id: carpet_version + attributes: + label: Carpet Version + description: | + The version of Carpet you are running? + validations: + required: true + - type: input + id: fabric_api_version + attributes: + label: Fabric API Version + description: | + The version of Fabric API you are running? + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: | + Please tell us what the bug is with a clear and detailed description, put your screenshots if possible. + validations: + required: true + - type: textarea + id: to_reproduce + attributes: + label: To Reproduce + description: | + How do you trigger this bug? Please walk us through it step by step. + validations: + required: true + - type: textarea + id: expected_behavior + attributes: + label: Expected behavior + description: | + A clear and concise description of what you expected to happen. + - type: textarea + id: log + attributes: + label: Log + description: | + Please provide your log here if you can. + - type: checkboxes + id: latest_build_tested + attributes: + label: Latest CI build tested + options: + - label: I confirm that this problem still exists with the latest CI build. + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..de05800 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,23 @@ +name: Feature Request +description: Suggest an idea for this project. +title: "[Feature Request] " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: "**Note: Please search for existing feature requests before reporting where possible to avoid duplicate requests**" + - type: textarea + id: description + attributes: + label: What new features do you want? + description: | + What new feature or change you want? How it improves? Please tell us the requirements is with a clear and detailed description, put your screenshots if possible. + validations: + required: true + - type: checkboxes + id: latest_build_tested + attributes: + label: Latest CI build tested + options: + - label: I confirm that the feature I requested is not in the latest CI build. + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 0000000..4590fd5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,26 @@ +name: Question +description: Anything you don't understand. +title: "[Question] " +labels: ["question"] +body: + - type: markdown + attributes: + value: "**Note: Please search for existing issues before reporting where possible to avoid duplicate reporting.**" + - type: dropdown + id: question_yype + attributes: + label: Question Type + options: + - "Codes" + - "Usages" + - "Others" + validations: + required: true + - type: textarea + id: descript + attributes: + label: Description + description: | + Please tell us the question is with a clear and detailed description, put your screenshots if possible. + validations: + required: true \ No newline at end of file