From e5b9392fcd4ebed7ee37c07d68a6f0d929964674 Mon Sep 17 00:00:00 2001 From: memoclaw Date: Sat, 7 Mar 2026 18:49:27 +0800 Subject: [PATCH] chore: use issue types instead of labels for bug/feature templates Replace `labels: [bug]` and `labels: [enhancement]` with `type: Bug` and `type: Feature` to leverage GitHub's native issue types already configured on this repo. Co-Authored-By: Claude Opus 4.6 --- .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 db3e0b879..75f0b5850 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: Bug Report description: Something isn't working as expected -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 72805f595..ec1ff0cfe 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ name: Feature Request description: Suggest a new feature or improvement -labels: [enhancement] +type: Feature body: - type: markdown attributes: