From 5cfdd2339f040e2e818cdbf80a17d9dc57a94b09 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Thu, 24 Jun 2021 08:31:41 +0000 Subject: [PATCH] Try the new issue template system --- .github/ISSUE_TEMPLATE/bug_report.md | 16 ------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 33 ++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 16 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index f9cee6d08..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Bug report -about: Report some misbehaviour in the mod -labels: bug ---- - - - -## Useful information to include: - - Minecraft version - - CC: Tweaked version - - Logs: These will be located in the `logs/` directory of your Minecraft instance. Please upload them as a gist or directly into this editor. - - Detailed reproduction steps: sometimes I can spot a bug pretty easily, but often it's much more obscure. The more information I have to help reproduce it, the quicker it'll get fixed. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 000000000..164aedc4b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,33 @@ +name: Bug report +about: Report some misbehaviour in the mod +labels: [ bug ] +body: +- type: dropdown + id: mc-version + attributes: + label: Minecraft Version + description: What version of Minecraft are you using? + options: + - 1.15.x + - 1.16.x + validations: + required: true +- type: input + id: version + attributes: + label: Version + description: "What version of CC: Tweaked are you using?" + placeholder: "e.g. 1.96.0" + validations: + required: true +- type: textarea + id: details + attributes: + label: Details + description: | + Description of the bug. Please include the following: + - Logs: These will be located in the `logs/` directory of your Minecraft + instance. Please upload them as a gist or directly into this editor. + - Detailed reproduction steps: sometimes I can spot a bug pretty easily, + but often it's much more obscure. The more information I have to help + reproduce it, the quicker it'll get fixed.