From d89957632bc6124bfc001567fef034d50ce1595e Mon Sep 17 00:00:00 2001 From: Rick Calixte <10281587+rcalixte@users.noreply.github.com> Date: Thu, 16 Nov 2023 00:22:20 -0500 Subject: [PATCH] Fix template label (case sensitive) (#514) --- .github/ISSUE_TEMPLATE/01_bug_report.yml | 2 +- .github/bug_report_creator.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yml b/.github/ISSUE_TEMPLATE/01_bug_report.yml index 67ef938f..19850999 100644 --- a/.github/ISSUE_TEMPLATE/01_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yml @@ -96,6 +96,6 @@ body: type: markdown description: "If something isn't working, file a report. \U0001F527" labels: -- bug +- BUG name: "\U0001F41C Extension Bug Report" title: Extension Bug diff --git a/.github/bug_report_creator.py b/.github/bug_report_creator.py index b52f4b6d..980196bb 100755 --- a/.github/bug_report_creator.py +++ b/.github/bug_report_creator.py @@ -21,7 +21,7 @@ BUG_REPORT = {'name': '🐜 Extension Bug Report', 'description': "If something isn't working, file a report. 🔧", 'title': 'Extension Bug', - 'labels': ['bug'], + 'labels': ['BUG'], 'body': [{'type': 'markdown', 'attributes': {'value': 'Thanks for taking the time to fill out this bug report!'}}, {'type': 'input', 'id': 'extension_version',