Update labeler.yml

This commit is contained in:
jiaomh 2024-07-15 21:14:42 +08:00 committed by GitHub
parent 8166f29f9e
commit 7160feaf09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

14
.github/labeler.yml vendored
View File

@ -12,16 +12,16 @@ comment: |
# - values are array of string patterns to match against title + body in issues/prs # - values are array of string patterns to match against title + body in issues/prs
labels: labels:
'bug': 'bug':
- '\bbug[s]?\b' - '(?i)\bbug[s]?\b'
'help wanted': 'help wanted':
- '\bhelp( wanted)?\b' - '(?i)\bhelp( wanted)?\b'
'feat': 'feat':
- '\bfeat' - '(?i)\bfeat'
'fix': 'fix':
- '\bfix' - '(?i)\bfix'
'style': 'style':
- '\bstyle' - '(?i)\bstyle'
'chore': 'chore':
- '\bchore' - '(?i)\bchore'
'doc': 'doc':
- '\bdoc[s]?' - '(?i)\bdoc[s]?'