From 48acaeb1b8b752eb79b0c215d7d4ca1413abbfd4 Mon Sep 17 00:00:00 2001 From: Cael Warner <52902343+CaelWarner@users.noreply.github.com> Date: Sat, 11 Dec 2021 13:38:08 -0800 Subject: [PATCH] Created issue forms - Created a bug report and suggestion issue form which will help people to create more structured issues that will provide more useful information - Added bug_report.yml - Added suggestion.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 123 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/suggestion.yml | 25 ++++++ 2 files changed, 148 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/suggestion.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..cf92770d8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,123 @@ +name: Bug Report +description: Create a bug report to help us improve Create +labels: [ "bug" ] +body: + - type: textarea + attributes: + label: Describe the Bug + description: A clear and concise description of what the bug is + validations: + required: true + - type: textarea + attributes: + label: Reproduction Steps + description: Tell us about the steps to reproduce the bug + value: | + 1. + 2. + 3. + ... + validations: + required: true + - type: textarea + attributes: + label: Expected Result + description: A clear and concise description of what you expected to happen + validations: + required: true + - type: textarea + attributes: + label: Screenshots and Videos + description: If applicable, add screenshots or videos to help explain your problem + validations: + required: false + - type: input + attributes: + label: Operating System + description: The operating system you were using when the bug occured + placeholder: Windows 11 + validations: + required: true + - type: dropdown + attributes: + label: Mod Version + description: The version of the mod you were using when the bug occured + options: + - "0.4.0" + - "0.3.2g" + - "0.3.2f" + - "0.3.2e" + - "0.3.2d" + - "0.3.2c" + - "0.3.2b" + - "0.3.2a" + - "0.3.2" + - "0.3.1c" + - "0.3.1b" + - "0.3.1a" + - "0.3.1" + - "0.3.0e" + - "0.3.0d" + - "0.3.0c" + - "0.3.0b" + - "0.3.0a" + - "0.3.0" + - "0.2.4e" + - "0.2.4d" + - "0.2.4c" + - "0.2.4b" + - "0.2.4a" + - "0.2.4" + - "0.2.3" + - "0.2.2b" + - "0.2.2a" + - "0.2.2" + - "0.2.1" + - "0.2.0" + - "0.1.1a" + - "0.1.1" + - "0.1.0" + - "0.0.5" + - "0.0.4" + - "0.0.3" + - "0.0.2" + - "0.0.1" + validations: + required: true + - type: dropdown + attributes: + label: Minecraft Version + description: The version of Minecraft you were using when the bug occured + options: + - "1.18.1" + - "1.18" + - "1.17.1" + - "1.16.5" + - "1.16.4" + - "1.16.3" + - "1.15.2" + - "1.14.4" + validations: + required: true + - type: input + attributes: + label: Forge Version + description: The version of Forge you were using when the bug occured + placeholder: 36.2.0 + validations: + required: true + - type: textarea + attributes: + label: Other Mods + description: Please list any other mods that were running when the crash happened + validations: + required: false + - type: textarea + attributes: + label: Additional Context + description: Add any extra context about the bug here + validations: + required: false + - type: markdown + attributes: + value: "Thank you for taking the time to make this bug report and to help improve Create" diff --git a/.github/ISSUE_TEMPLATE/suggestion.yml b/.github/ISSUE_TEMPLATE/suggestion.yml new file mode 100644 index 000000000..cd38b4ed8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/suggestion.yml @@ -0,0 +1,25 @@ +name: Suggestion +description: Suggest something that would improve Create +labels: [ "suggestion" ] +body: + - type: textarea + attributes: + label: Describe the Suggestion + description: What should we add or change to make Create better? + validations: + required: true + - type: textarea + attributes: + label: Screenshots and Videos + description: If applicable, add screenshots or videos to help explain your suggestion + validations: + required: false + - type: textarea + attributes: + label: Additional Context + description: Add any extra context about the suggestion here + validations: + required: false + - type: markdown + attributes: + value: "Thank you for taking the time to make this suggestion and to help improve Create"