-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-drafter.yml
54 lines (40 loc) · 1.24 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
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
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'
patch:
labels:
- 'patch'
default: patch
template: |
## Here's What Changed
$CHANGES
---
footer: |
Current Release: [$RESOLVED_VERSION](../tag/$RESOLVED_VERSION)
Previous Release: [$PREVIOUS_TAG](../tag/$PREVIOUS_TAG)
[Detailed comparison](../../compare/$PREVIOUS_TAG...$RESOLVED_VERSION)