From cf4ebf02a52b0c8d72b45f726964b429aa968432 Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Sat, 9 Nov 2024 16:06:42 +0100 Subject: [PATCH] Setup issue templates --- .github/ISSUE_TEMPLATE/BUG_REPORT.yaml | 71 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml | 28 ++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 3 files changed, 100 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.yaml create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yaml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yaml new file mode 100644 index 000000000..280f8ac33 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yaml @@ -0,0 +1,71 @@ +name: 🐛 Bug / Crash Report +description: File a bug / crash report +title: "[Bug]: " +labels: [bug, crash] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: checkboxes + id: general-info + attributes: + label: General Info + description: You may select more than one. + options: + - label: I am running a modpack + - label: I can reproduce this issue consistently in single-player + - label: I can reproduce this issue consistently in multi-player + - label: I have searched for this issue previously and it was either (1) not previously reported, or (2) previously fixed and I am having the same problem. + required: true + - label: I am crashing and can provide my crash report(s) + - label: I am using the latest version of the mod + - type: input + id: forge-info + attributes: + label: Forge/Neoforge version + placeholder: ex. 21.1.1 + description: Please be as specific as possible, latest is not a valid version + validations: + required: true + - type: input + id: minecraft-info + attributes: + label: Minecraft version + placeholder: ex. 1.21.1 + description: Please be as specific as possible, latest is not a valid version + validations: + required: true + - type: input + id: mod-info + attributes: + label: Mod version + placeholder: ex. 0.0.1 + description: Please be as specific as possible, latest is not a valid version + validations: + required: true + - type: input + id: java-info + attributes: + label: Java version + placeholder: ex. Java 21.0.3 + description: Please be as specific as possible, latest is not a valid version + validations: + required: true + - type: textarea + id: issue-description + attributes: + label: Issue Description + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Additional Information + description: Please post any crash reports, screenshots, etc. here. (use Pastebin or Imgur accordingly) + placeholder: Please put crash reports onto pastebin + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml new file mode 100644 index 000000000..95a22862d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml @@ -0,0 +1,28 @@ +name: 💡 Suggestions +description: For suggesting changes / additions +title: "[Suggestion]: " +labels: [suggestion, enhancement] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out the feature request! + - type: checkboxes + id: general-info + attributes: + label: General Info + description: You may select more than one. + options: + - label: I would like to propose new content + - label: I would like to propose changes + - label: I would like to propose another thing + validations: + required: false + - type: textarea + id: suggestion-description + attributes: + label: Suggestion Description + description: Tell us your suggestion + placeholder: I want this to happen + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false