forked from databendlabs/databend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabeler.yml
57 lines (53 loc) · 1.43 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# labeler "full" schema
# enable labeler on issues, prs, or both.
enable:
issues: true
prs: true
# comments object allows you to specify a different message for issues and prs
comments:
prs: |
Thanks for the contribution!
I have applied any labels matching special text in your PR Changelog.
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:
'pr-feature':
include:
- '\bNew Feature?\b'
exclude: []
'pr-bugfix':
include:
- '\bBug Fix?\b'
exclude: []
'pr-improvement':
include:
- '\bImprovement?\b'
exclude:
- '\bPerformance Improvement?\b'
'pr-performance':
include:
- '\bPerformance Improvement?\b'
exclude: []
'pr-build':
include:
- '\bBuild/Testing/CI?\b'
exclude: []
'pr-doc-fix':
include:
- '\bDocumentation?\b'
- '\bWebsite?\b'
exclude: []
'pr-not-for-changelog':
include:
- '\bNot for changelog?\b'
exclude: []
'pr-other':
include:
- '\bOther?\b'
exclude: []