From 23c317beb8c5bf5681ef64f9e81ef5f1abfd8d62 Mon Sep 17 00:00:00 2001 From: ThePhaseless Date: Thu, 6 Feb 2025 18:36:00 +0000 Subject: [PATCH] [skip ci] use new issue type --- .github/ISSUE_TEMPLATE/bug_report.md | 27 --------------- .github/ISSUE_TEMPLATE/bug_report.yml | 47 +++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 27 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index f4a979c..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a bug report -title: '' -labels: '' -assignees: 'ThePhaseless' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**I've:** - -- [ ] - read Loop Warning on Readme. -- [ ] - done the troubleshooting from Readme. -- [ ] - checked if such issue already exists. - -**Docker host (please complete the following information):** - -- OS: [e.g. Ubuntu Linux] -- Platform and model: [Synology, PC, Laptop, RPi 3] -- Architecture [e.g. ARM64] -- Website: [e.g. https://nowsecure.nl] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..9cdb94f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,47 @@ +name: Bug report +description: Create a bug report +assignees: ThePhaseless + +body: + - type: checkboxes + attributes: + label: "I've completed the following steps:" + options: + - label: Read Loop Warning on Readme [1] + - label: Done the troubleshooting from Readme [2] + - label: Checked if such issue already exists [3] + + - type: input + id: docker-host + attributes: + label: OS + placeholder: e.g. Ubuntu Linux + + - type: input + id: platform-model + attributes: + label: Platform and model + placeholder: e.g. Synology, PC, Laptop, RPi 3 + + - type: input + id: architecture + attributes: + label: Architecture + placeholder: e.g. ARM64 + + - type: input + id: website + attributes: + label: Website + placeholder: e.g. https://nowsecure.nl + + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + placeholder: "Example: The application crashes when trying to load a new file" + + - type: textarea + attributes: + label: Additional context + description: Add any other context about the problem here.