From 8344dcee851d695c5460cbbdfc043bcfa0889c8f Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Wed, 29 Jan 2025 09:04:17 +0100 Subject: [PATCH] chore(issue_templates): Use new type field https://github.com/orgs/community/discussions/148715#discussioncomment-11845050 also removed title field, as duplicating the issue "type" info in there is not necessary anymore --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 +-- .github/ISSUE_TEMPLATE/feature_request.yml | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index bda19fdc0..b1fc4ba85 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,6 @@ name: Bug Report description: Report a bug -title: "(Bug report) " -labels: "Type: Bug" +type: "Bug" body: - type: textarea attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index cee77701b..92473b1b9 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,12 +1,11 @@ name: Feature Request description: Ask for a new feature to be added -title: "(Feature request) " -labels: "Type: Enhancement" +type: "Feature" body: - type: textarea attributes: label: Describe feature - description: A clear and concise description of what you want to be added.. + description: A clear and concise description of what you want to be added. validations: required: true - type: textarea