Skip to content

Commit

Permalink
ci: update regexp in labeler.yml for a better precision (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumirlumir authored Aug 27, 2024
1 parent 250fb55 commit 86dc521
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,43 @@ comments:
labels:
'build':
include:
- '\bbuild\b'
- '^build\b'
'chore':
include:
- '\bchore\b'
- '^chore\b'
'ci':
include:
- '\bci\b'
- '^ci\b'
'design':
include:
- '\bdesign\b'
- '^design\b'
'docs':
include:
- '\bdocs\b'
- '^docs\b'
'feat':
include:
- '\bfeat\b'
- '^feat\b'
'fix':
include:
- '\bfix\b'
- '^fix\b'
'perf':
include:
- '\bperf\b'
- '^perf\b'
'refactor':
include:
- '\brefactor\b'
- '^refactor\b'
'remove':
include:
- '\bremove\b'
- '^remove\b'
'rename':
include:
- '\brename\b'
- '^rename\b'
'style':
include:
- '\bstyle\b'
- '^style\b'
'test':
include:
- '\btest\b'
- '^test\b'
'release':
include:
- '\brelease\b'
- '^release\b'

0 comments on commit 86dc521

Please sign in to comment.