Skip to content

Commit f45c18a

Browse files
committed
chore: add release-drafter.yml
1 parent 2703bd1 commit f45c18a

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

.github/workflows/release-drafter.yml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
name-template: 'v$RESOLVED_VERSION 🌈'
2+
tag-template: 'v$NEXT_PATCH_VERSION'
3+
categories:
4+
- title: '🚀 Features'
5+
labels:
6+
- 'feature'
7+
- 'enhancement'
8+
- 'feat'
9+
- title: 'Improvements'
10+
labels:
11+
- 'perf'
12+
- 'refactor'
13+
- title: 'Tests'
14+
labels:
15+
- 'tests'
16+
- 'testing'
17+
- title: '🐛 Bug Fixes'
18+
labels:
19+
- 'fix'
20+
- 'bugfix'
21+
- 'bug'
22+
- 'hotfix'
23+
- 'revert'
24+
- title: '🧰 Maintenance'
25+
labels:
26+
- 'docs'
27+
- 'chore'
28+
- 'maintenance'
29+
- 'style'
30+
- 'build'
31+
- 'chores'
32+
- 'ci'
33+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
34+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
35+
version-resolver:
36+
major:
37+
labels:
38+
- 'major'
39+
minor:
40+
labels:
41+
- 'minor'
42+
patch:
43+
labels:
44+
- 'patch'
45+
default: patch
46+
exclude-labels:
47+
- 'skip-changelog'
48+
template: |
49+
## Changes
50+
51+
$CHANGES
52+
autolabeler:
53+
- label: 'maintenance'
54+
files:
55+
- '*.yml'
56+
- '*.conf'
57+
- '*.sbt'
58+
branch:
59+
- '/chore\/.+/'
60+
- '/refactor\/.+/'
61+
- '/maintenance\/.+/'
62+
- label: 'bug'
63+
branch:
64+
- '/fix\/.+/'
65+
title:
66+
- '/fix/i'
67+
- label: 'enhancement'
68+
branch:
69+
- '/feat\/.+/'
70+
- '/refactor\/.+/'
71+
- label: 'docs'
72+
files:
73+
- '*.md'
74+
- '*.txt'
75+
branch:
76+
- '/doc\/.+/'
77+
- '/docs\/.+/'

0 commit comments

Comments
 (0)