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 1/3] 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 4fc9be7793..0000000000 --- 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 0000000000..ec7456330d --- /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 From 5c98734f5689a96b7366ab579bdca31d0cd258cf 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 22:03:42 +0100 Subject: [PATCH 2/3] templates: Add feature template --- .github/ISSUE_TEMPLATE/02-feature.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/02-feature.yml diff --git a/.github/ISSUE_TEMPLATE/02-feature.yml b/.github/ISSUE_TEMPLATE/02-feature.yml new file mode 100644 index 0000000000..0a871cddae --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature.yml @@ -0,0 +1,11 @@ +name: Feature Request +description: File a feature request. +title: "" +labels: ["feature"] +body: +- type: textarea + attributes: + label: Description + description: Description of the feature. + validations: + required: true From 20842c0d3070731d54a82a2a1372fd29101ebcac 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 22:08:54 +0100 Subject: [PATCH 3/3] templates: Deny blank issues --- .github/ISSUE_TEMPLATE/config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..3ba13e0cec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false