amis2/.github/labeler.yml
2024-07-15 21:14:42 +08:00

28 lines
684 B
YAML

# 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':
- '(?i)\bbug[s]?\b'
'help wanted':
- '(?i)\bhelp( wanted)?\b'
'feat':
- '(?i)\bfeat'
'fix':
- '(?i)\bfix'
'style':
- '(?i)\bstyle'
'chore':
- '(?i)\bchore'
'doc':
- '(?i)\bdoc[s]?'