-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrelease-drafter.yml
42 lines (41 loc) · 1.3 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
# https://github.com/release-drafter/release-drafter?tab=readme-ov-file#configuration-options
template: |
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION
name-template: 'docs-builder $RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'
change-template: '- $TITLE by @$AUTHOR in #$NUMBER'
categories:
- title: '💥 Breaking Changes'
labels:
- 'breaking' # When a breaking change is introduced
- title: '✨ Features'
labels:
- 'feature' # When a new feature is introduced
- 'enhancement' # When an existing feature is improved
- title: '🐛 Bug Fixes'
labels:
- 'bug' # When a bug is fixed
- 'fix' # When a bug is fixed
- title: '📝 Documentation'
labels:
- 'documentation' # When documentation is updated
- title: '🧰 Maintenance'
labels:
- 'chore' # When a chore is done
- 'dependencies' # When dependencies are updated
- title: '⚙️ Automation'
labels:
- 'automation' # When automation is updated
- 'ci' # When automation is updated
exclude-labels:
- 'changelog:skip' # When a PR should be excluded from the changelog
version-resolver:
major:
labels:
- 'breaking'
minor:
labels:
- 'feature'
- 'enhancement'
default: patch