From 2e278712ef2f164986cbdb0785647837eb7d690a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6ran=20Karl?= <3951388+JoeKar@users.noreply.github.com> Date: Tue, 20 Jan 2026 21:59:53 +0100 Subject: [PATCH] templates: Convert markdown issue template into YAML form .github/ISSUE_TEMPLATE isn't allowed as template file name any longer, since it is used as the default search folder for issue templates. --- .github/ISSUE_TEMPLATE | 9 --------- .github/ISSUE_TEMPLATE/01-bug.yml | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 9 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE create mode 100644 .github/ISSUE_TEMPLATE/01-bug.yml diff --git a/.github/ISSUE_TEMPLATE b/.github/ISSUE_TEMPLATE deleted file mode 100644 index 4fc9be77..00000000 --- a/.github/ISSUE_TEMPLATE +++ /dev/null @@ -1,9 +0,0 @@ -## Description of the problem or steps to reproduce - -## Specifications - - - -Commit hash: -OS: -Terminal: diff --git a/.github/ISSUE_TEMPLATE/01-bug.yml b/.github/ISSUE_TEMPLATE/01-bug.yml new file mode 100644 index 00000000..ec745633 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-bug.yml @@ -0,0 +1,25 @@ +name: Bug Report +description: File a bug report. +title: "" +labels: ["bug", "triage"] +body: +- type: textarea + attributes: + label: Description + description: Description of the problem and steps to reproduce. + validations: + required: true +- type: textarea + attributes: + label: Environment + description: | + examples: + - **Version**: 2.0.15 and/or commit hash ($ micro -version) + - **OS**: Debian + - **Terminal**: ptyxis + value: | + - Version: + - OS: + - Terminal: + validations: + required: true