From fe4b426b5e5548eac57dae06aab4a07570ff5c94 Mon Sep 17 00:00:00 2001 From: Frank Date: Fri, 13 May 2022 00:29:33 +0200 Subject: [PATCH] Added Issue Template --- .github/ISSUE_TEMPLATE/BUG_REPORT.yml | 83 +++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/SUGGEST_FROM.yml | 18 ++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 3 files changed, 102 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.yml create mode 100644 .github/ISSUE_TEMPLATE/SUGGEST_FROM.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 00000000..2108107f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,83 @@ +name: Report a Bug +description: File a bug report +title: "[Bug] " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to report a Bug in BCLib! + - 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: markdown + attributes: + value: | + ## Versions + - type: input + id: bn_version + attributes: + label: BCLib + description: What version of BCLib are you running? + placeholder: 2.x.x + validations: + required: true + - type: input + id: fabric_api_version + attributes: + label: Fabric API + description: What version of Fabric API is installed + placeholder: 0.5x.x + validations: + required: false + - type: input + id: fabric_loader_version + attributes: + label: Fabric Loader + description: What version of Fabric Loader do you use + placeholder: 0.14.x + validations: + required: false + - type: dropdown + id: mc_version + attributes: + label: Minecraft + description: What version of Minecraft is installed? + options: + - 1.19-snapshot + - 1.18.2 + - 1.18.1 + - 1.18 + - 1.17.1 + - 1.17 + - 1.16.5 + - 1.16.4 + - 1.16.3 + - 1.16.2 + - 1.16.1 + - 1.16.0 + - Before 1.16 + validations: + required: true + - type: markdown + attributes: + value: | + ## Additional Information + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: textarea + id: other_mods + attributes: + label: Other Mods + description: If you can, please supply a list of installed Mods (besides BetterNether and BCLib). This information may already be included in the log above. + render: shell diff --git a/.github/ISSUE_TEMPLATE/SUGGEST_FROM.yml b/.github/ISSUE_TEMPLATE/SUGGEST_FROM.yml new file mode 100644 index 00000000..8b40a8bb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/SUGGEST_FROM.yml @@ -0,0 +1,18 @@ +name: Suggest a Feature or Change +description: Have a new Idea, then suggest a Feature here. +title: "[Suggestion] " +labels: ["suggestion"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to suggest a new Feature for BCLib. We appreciate your time! + - type: textarea + id: describe + attributes: + label: Description + description: Tell us your idea + placeholder: + value: + validations: + 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..a49eab2f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true \ No newline at end of file