Skip to content

Commit a21a18b

Browse files
committed
fix: case insensitive
1 parent ecb440a commit a21a18b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/labeler/labeler-config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ version: 1
22

33
labels:
44
- label: 'bug'
5-
title: '\[?bug[:\]]'
5+
title: '(?i)\[?bug[:\]]'
66

77
- label: 'feature'
8-
title: '\[?(feature|feat)[:\]]'
8+
title: '(?i)\[?(feature|feat)[:\]]'
99

1010
- label: 'forge'
11-
title: '\[?(forge|all)[:\]]'
11+
title: '(?i)\[?(forge|all)[:\]]'
1212

1313
- label: 'neoforge'
14-
title: '\[?(neoforge|all)[:\]]'
14+
title: '(?i)\[?(neoforge|all)[:\]]'
1515

1616
- label: 'fabric'
17-
title: '\[?(fabric|all)[:\]]'
17+
title: '(?i)\[?(fabric|all)[:\]]'
1818

1919
- label: '1.20'
2020
title: '\[?1\.20(\.\d+|\.x)?[:\]]?'

0 commit comments

Comments
 (0)