Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix template label (case sensitive) #514

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/01_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/bug_report_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Loading