Merge pull request #10633 from Jiaohm/branch2

chore: 增加大小写不敏感匹配
This commit is contained in:
hsm-lv 2024-07-17 09:50:41 +08:00 committed by GitHub
commit 7682b0a4ca
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
labels:
'bug':
- '\bbug[s]?\b'
- '(?i)\bbug[s]?\b'
'help wanted':
- '\bhelp( wanted)?\b'
- '(?i)\bhelp( wanted)?\b'
'feat':
- '\bfeat'
- '(?i)\bfeat'
'fix':
- '\bfix'
- '(?i)\bfix'
'style':
- '\bstyle'
- '(?i)\bstyle'
'chore':
- '\bchore'
- '(?i)\bchore'
'doc':
- '\bdoc[s]?'
- '(?i)\bdoc[s]?'