Skip to content

Commit 606307d

Browse files
authored
Fix labels on Github issue templates. (celery#5955)
Use quotation marks to escape labels on Github issue templates. This prevents the colon from breaking the template.
1 parent d52c051 commit 606307d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/ISSUE_TEMPLATE/Bug-Report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug Report
33
about: Is something wrong with Celery?
4-
labels: Issue Type: Bug Report
4+
labels: "Issue Type: Bug Report"
55
---
66
<!--
77
Please fill this template entirely and do not erase parts of it.

.github/ISSUE_TEMPLATE/Documentation-Bug-Report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Documentation Bug Report
33
about: Is something wrong with our documentation?
4-
labels: Issue Type: Bug Report, Category: Documentation
4+
labels: "Issue Type: Bug Report, Category: Documentation"
55
---
66
<!--
77
Please fill this template entirely and do not erase parts of it.

.github/ISSUE_TEMPLATE/Enhancement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Enhancement
33
about: Do you want to improve an existing feature?
4-
labels: Issue Type: Enhancement
4+
labels: "Issue Type: Enhancement"
55
---
66
<!--
77
Please fill this template entirely and do not erase parts of it.

.github/ISSUE_TEMPLATE/Feature-Request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature Request
33
about: Do you need a new feature?
4-
labels: Issue Type: Feature Request
4+
labels: "Issue Type: Feature Request"
55
---
66
<!--
77
Please fill this template entirely and do not erase parts of it.

0 commit comments

Comments
 (0)