-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathlabeler.yml
27 lines (23 loc) · 912 Bytes
/
labeler.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# labeler "full" schema
# https://github.com/marketplace/actions/auto-labeler
# enable labeler on issues, prs, or both.
enable:
issues: false
prs: true
# comments object allows you to specify a different message for issues and prs
comments:
prs: |
I have applied any labels matching special text in your title and description.
Please review the labels and make any necessary changes.
# Labels is an object where:
# - keys are labels
# - values are objects of { include: [ pattern ], exclude: [ pattern ] }
# - pattern must be a valid regex, and is applied globally to
# title + description of issues and/or prs (see enabled config above)
# - 'include' patterns will associate a label if any of these patterns match
# - 'exclude' patterns will ignore this label if any of these patterns match
labels:
exclude-from-changelog:
include:
- 'pre-commit\.ci'
exclude: []