From c6b192fe99ec8340bde8e9d92a998da84bb9ff91 Mon Sep 17 00:00:00 2001 From: Adrian Dombeck Date: Fri, 26 Jun 2026 13:29:10 +0200 Subject: [PATCH] GitHub issue template: Use issue types instead of labels GitHub introduced issue types in 2025. Since then, we have had two different ways to mark issues as bugs/features: The labels and the issue types. Since we can't disable the issue types, let's use them instead of our labels. --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 77356dfb7c..e67c3633ae 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Report an issue description: Create a bug report to fix an issue title: "Issue: " -labels: ["bug"] +type: bug body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 9981d9cc6b..cb10def560 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,7 @@ name: Request a feature description: Suggest new functionality or improvements for this project title: "Feature: " -labels: ["feature"] +type: feature body: - type: markdown attributes: