-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathrelease-drafter.yml
62 lines (58 loc) · 1.6 KB
/
release-drafter.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
58
59
60
61
62
exclude-labels:
- skip changelog
- release
change-template: '- $TITLE (#$NUMBER)'
change-title-escapes: '\<*_&'
replacers:
# Remove conventional commits from titles
- search: '/- (build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)(\(.*\))?(\!)?\: /g'
replace: '- '
autolabeler:
- label: rust
title:
# Example: feat(rust): ...
- '/^(build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)(\(.*rust.*\))?\!?\: /'
- label: python
title:
# Example: feat(python): ...
- '/^(build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)(\(.*python.*\))?\!?\: /'
- label: breaking
title:
# Example: feat!: ...
- '/^(build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)(\(.*\))?\!\: /'
- label: breaking rust
title:
# Example: feat(rust!, python): ...
- '/^(build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)\(.*rust\!.*\)\: /'
- label: breaking python
title:
# Example: feat(python!): ...
- '/^(build|chore|ci|depr|docs|feat|fix|perf|refactor|release|test)\(.*python\!.*\)\: /'
- label: build
title:
- '/^build/'
- label: internal
title:
- '/^(chore|ci|refactor|test)/'
- label: deprecation
title:
- '/^depr/'
- label: documentation
title:
- '/^docs/'
- label: enhancement
title:
- '/^feat/'
- label: fix
title:
- '/^fix/'
- label: performance
title:
- '/^perf/'
- label: release
title:
- '/^release/'
template: |
$CHANGES
Thank you to all our contributors for making this release possible!
$CONTRIBUTORS