Skip to content

Commit 0e2595c

Browse files
committed
Fix issue templates
The labels need to be marked explicitly as strings because they have a ":". Signed-off-by: Leandro Lucarella <leandro.lucarella@frequenz.com>
1 parent b1550e4 commit 0e2595c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ name: Report something is not working properly 🐛
55
description:
66
Use this if there is something that is not working properly. If you are not
77
sure or you need help making something work, please ask a question instead.
8-
labels: [ priority:❓, type:bug ]
8+
labels:
9+
- "priority:❓"
10+
- "type:bug"
911
body:
1012
- type: markdown
1113
attributes:

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33

44
name: Request a feature or enhancement ✨
55
description: Use this if something is missing or could be done better or more easily.
6-
labels: [ part:❓, priority:❓, type:enhancement ]
6+
labels:
7+
- "part:❓"
8+
- "priority:❓"
9+
- "type:enhancement"
710
body:
811
- type: markdown
912
attributes:

0 commit comments

Comments
 (0)