Skip to content

Commit

Permalink
bugfix: github: Adjust label yaml quoting syntax.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
neiljp committed May 17, 2024
1 parent f65f8f2 commit 440a3fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/01_crash.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug report (major)
about: A major bug which significantly impacts usability, eg. an unexpected quit, crash, freeze.
labels: 'bug: crash',
labels: 'bug: crash,'
---

### Bug description
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/02_bug.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug report
about: A concrete bug report with steps to reproduce the behavior.
labels: bug,
labels: 'bug,'
---

### Bug description
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/03_parity.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature request (a missing known Zulip feature)
about: A request for a feature which is missing, but present in another Zulip client (eg. Web/Desktop/mobile).
labels: 'missing feature',
labels: 'missing feature,'
---

### Description of feature missing from another Zulip client
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/04_platform.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature suggestion
about: A suggestion for an improvement, specific to the capabilities of the terminal environment.
labels: enhancement,
labels: 'enhancement,'
---

<!--
Expand Down

0 comments on commit 440a3fa

Please sign in to comment.