-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-drafter.yml
53 lines (37 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
43
44
45
46
47
48
49
50
51
52
53
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
tag-prefix: "v"
categories:
- title: ':lock: Security Issues'
labels: [security]
- title: ':rocket: Updates'
labels: [enhancement, feature, update]
- title: ':bug: Bug Fixes'
labels: [bug, bugfix, fix]
- title: ':memo: Documentation'
labels: [documentation, docs]
- title: ':construction: Work in Progress'
labels: [wip, in-progress, incomplete, partial, hotfix]
- title: ':package: Dependencies'
labels: [dependencies, dependency]
- title: ":test_tube: Tests and Refactor"
labels: [refactoring, refactor, tests, testing]
- title: ":robot: CI/CD and Pipelines"
labels: [build, ci, pipeline]
change-template: '- $TITLE — @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels: [major]
minor:
labels: [minor, feature, update, enhancement]
default: patch
exclude-labels: [skip-changelog]
template: |
## Here's What Changed
$CHANGES
---
footer: |
Current Release: [v$RESOLVED_VERSION](../../releases/tag/v$RESOLVED_VERSION)
Previous Release: [$PREVIOUS_TAG](../../releases/tag/$PREVIOUS_TAG)
[Detailed comparison](../../compare/$PREVIOUS_TAG...v$RESOLVED_VERSION)