From c18bff361cabbedd57b701cabd4c5be977a0f31c Mon Sep 17 00:00:00 2001 From: ReinforceZwei <39955851+ReinforceZwei@users.noreply.github.com> Date: Mon, 19 Jul 2021 00:46:58 +0800 Subject: [PATCH] Create bug report GitHub issue form (#1691) * Issue form * Create bug report GitHub issue form --- .github/ISSUE_TEMPLATE/bug_report.md | 50 ----------- .github/ISSUE_TEMPLATE/bug_report_form.yaml | 98 +++++++++++++++++++++ .gitignore | 1 + 3 files changed, 99 insertions(+), 50 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report_form.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 6feff686..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: a:bug -assignees: '' - ---- - -**Prerequisites** - - [ ] I made sure I am running the latest [development build](https://ci.appveyor.com/project/ORelio/minecraft-console-client/build/artifacts) - - [ ] I tried to [look for similar issues](https://github.com/ORelio/Minecraft-Console-Client/issues?q=is%3Aissue) before opening a new one - - [ ] I have set `debugmessages=true` in config to diagnose my issue - - [ ] I have redacted session tokens and passwords before attaching screenshots - - ---- -## Expected Behavior - - ---- -## Actual Behavior - - ---- -## Steps to Reproduce the Problem - - 1. Login to [...] server - 2. Use [...] command - 3. - ---- -## Screenshot (If applicable) - - - ---- -## Anythings that could help diagnosing the bug -(config, log output) - - - ---- -## Specifications - - - Console Client version: - - Device: (Desktop, Laptop, VPS, Raspberry Pi, etc) - - Operating System: - - Minecraft version: - - Server address (If applicable): diff --git a/.github/ISSUE_TEMPLATE/bug_report_form.yaml b/.github/ISSUE_TEMPLATE/bug_report_form.yaml new file mode 100644 index 00000000..9de32161 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report_form.yaml @@ -0,0 +1,98 @@ +name: Bug Report +description: Create a report to help us improve +title: "[BUG] " +labels: + - "a:bug" +body: + - type: checkboxes + id: prerequisites + attributes: + label: Prerequisites + options: + - label: I made sure I am running the latest [development build](https://ci.appveyor.com/project/ORelio/minecraft-console-client/build/artifacts) + required: true + - label: I tried to [look for similar issues](https://github.com/ORelio/Minecraft-Console-Client/issues?q=is%3Aissue) before opening a new one + required: true + - label: I have set `debugmessages=true` in config to diagnose my issue + required: true + - label: I have redacted session tokens and passwords before attaching screenshots + required: true + - type: input + id: mc-version + attributes: + label: Minecraft Version + placeholder: 1.x.x + validations: + required: true + - type: input + id: client-version + attributes: + label: Console Client Version + description: Please make sure you are using the latest version + placeholder: Latest + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + placeholder: What do you expect to see? + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual Behavior + placeholder: What is the happening? + validations: + required: true + - type: textarea + id: reproduce-step + attributes: + label: Steps to Reproduce the bug + placeholder: "1. Login to ... server" + value: | + 1. + 2. + 3. + validations: + required: true + - type: textarea + id: screenshot + attributes: + label: Attach screenshot here (If applicable) + - type: textarea + id: others + attributes: + label: Anythings that could help diagnosing the bug + placeholder: Your configuration file, log output, ... + render: txt + - type: dropdown + id: device + attributes: + label: Device + description: What device you are using to run the client? + options: + - Desktop + - Laptop + - VPS + - Raspberry Pi + - Other + - type: dropdown + id: operating-system + attributes: + label: Operating System + description: What operating system is your device running? + options: + - Windows + - Linux + - MacOS + - Other + - type: input + id: server-address + attributes: + label: Server Address (If applicable) + - type: markdown + id: credit + attributes: + value: Thank you for filling the bug report. Feel free to submit the report to us. \ No newline at end of file diff --git a/.gitignore b/.gitignore index d9dbac87..10a7f2a6 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /.vs/ SessionCache.ini .* +!/.github \ No newline at end of file