amis2/.github/labeler.yml

28 lines
684 B
YAML
Raw Normal View History

2022-03-31 21:32:44 +08:00
# labeler "simple" schema
# Comment is applied to both issues and pull requests.
# If you need a more robust solution, consider the "full" schema.
comment: |
👍 Thanks for this!
🏷 I have applied any labels matching special text in your issue.
Please review the labels and make any necessary changes.
# Labels is an object where:
# - keys are labels
# - values are array of string patterns to match against title + body in issues/prs
labels:
'bug':
2024-07-15 21:14:42 +08:00
- '(?i)\bbug[s]?\b'
2022-03-31 21:32:44 +08:00
'help wanted':
2024-07-15 21:14:42 +08:00
- '(?i)\bhelp( wanted)?\b'
2022-03-31 21:32:44 +08:00
'feat':
2024-07-15 21:14:42 +08:00
- '(?i)\bfeat'
2022-03-31 21:32:44 +08:00
'fix':
2024-07-15 21:14:42 +08:00
- '(?i)\bfix'
2022-05-25 20:04:29 +08:00
'style':
2024-07-15 21:14:42 +08:00
- '(?i)\bstyle'
2022-03-31 21:32:44 +08:00
'chore':
2024-07-15 21:14:42 +08:00
- '(?i)\bchore'
2022-03-31 21:32:44 +08:00
'doc':
2024-07-15 21:14:42 +08:00
- '(?i)\bdoc[s]?'