Skip to content

Commit d3de7a3

Browse files
committed
Merge branch 'master' into dev
2 parents 3624de6 + 23f1462 commit d3de7a3

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

.github/release-drafter.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
-
5+
title: 'Features'
6+
labels:
7+
- 'enhancement'
8+
- 'feat'
9+
- 'feature'
10+
-
11+
title: 'Bug Fixes'
12+
labels:
13+
- 'bug'
14+
- 'bugfix'
15+
- 'fix'
16+
-
17+
title: 'Maintenance'
18+
labels:
19+
- 'chore'
20+
- 'style'
21+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
22+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
23+
version-resolver:
24+
major:
25+
labels: ['major']
26+
minor:
27+
labels: ['minor']
28+
patch:
29+
labels: ['patch']
30+
default: patch
31+
exclude-labels: ['skip']
32+
autolabeler:
33+
-
34+
label: 'bug'
35+
branch:
36+
- '/bug\/.+/'
37+
- '/bugfix\/.+/'
38+
- '/fix\/.+/'
39+
-
40+
label: 'enhancement'
41+
branch:
42+
- '/dependabot\/.+/'
43+
- '/enhancement\/.+/'
44+
- '/feat\/.+/'
45+
- '/feature\/.+/'
46+
-
47+
label: 'chore'
48+
branch:
49+
- '/chore\/.+/'
50+
- '/style\/.+/'
51+
template: |
52+
## Release notes
53+
54+
$CHANGES

.github/workflows/release-drafter.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release drafter
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, reopened, synchronize]
8+
9+
jobs:
10+
update_release_draft:
11+
name: Update draft release
12+
runs-on: ubuntu-latest
13+
steps:
14+
-
15+
uses: release-drafter/release-drafter@v5
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)