Skip to content

Commit 440a3fa

Browse files
committed
bugfix: github: Adjust label yaml quoting syntax.
Prior to this, two templates were ignored due to syntax errors. Documentation suggests using quotes around all of labels, ie. including commas inside the quote. eg. https://github.com/orgs/community/discussions/23682 Labels with spaces and commas were already surrounded by quotes; this change quotes labels in each template, and includes a comma at the end inside the closing quote.
1 parent f65f8f2 commit 440a3fa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/ISSUE_TEMPLATE/01_crash.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug report (major)
33
about: A major bug which significantly impacts usability, eg. an unexpected quit, crash, freeze.
4-
labels: 'bug: crash',
4+
labels: 'bug: crash,'
55
---
66

77
### Bug description

.github/ISSUE_TEMPLATE/02_bug.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug report
33
about: A concrete bug report with steps to reproduce the behavior.
4-
labels: bug,
4+
labels: 'bug,'
55
---
66

77
### Bug description

.github/ISSUE_TEMPLATE/03_parity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature request (a missing known Zulip feature)
33
about: A request for a feature which is missing, but present in another Zulip client (eg. Web/Desktop/mobile).
4-
labels: 'missing feature',
4+
labels: 'missing feature,'
55
---
66

77
### Description of feature missing from another Zulip client

.github/ISSUE_TEMPLATE/04_platform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature suggestion
33
about: A suggestion for an improvement, specific to the capabilities of the terminal environment.
4-
labels: enhancement,
4+
labels: 'enhancement,'
55
---
66

77
<!--

0 commit comments

Comments
 (0)