-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrelease-drafter.yml
60 lines (44 loc) · 1.06 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
name-template: 'Release v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
template: |
# What's Changed
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
categories:
- title: 'Breaking'
label: 'type: breaking'
- title: 'New'
label: 'type: feature'
- title: 'Bug Fixes'
label: 'type: bugfix'
- title: 'Maintenance'
labels:
- 'type: maintenance'
- 'type: performance'
- title: 'Documentation'
label: 'type: documentation'
- title: 'Other changes'
- title: 'Automation and CI changes'
label: 'type: ci'
- title: 'Dependency Updates'
label: 'type: dependencies'
collapse-after: 5
version-resolver:
major:
labels:
- 'type: breaking'
minor:
labels:
- 'type: feature'
patch:
labels:
- 'type: bug'
- 'type: maintenance'
- 'type: performance'
- 'type: documentation'
- 'type: ci'
- 'type: dependencies'
- 'type: security'
default: patch
exclude-labels:
- 'skip-changelog'