Skip to content

Commit f11ee28

Browse files
authored
Merge pull request #117 from sanders41/release-drafter
Adding release-drafter
2 parents e8ba92f + fe4998a commit f11ee28

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
exclude-labels:
4+
- 'dependencies'
5+
- 'skip-changelog'
6+
version-resolver:
7+
minor:
8+
labels:
9+
- 'breaking-change'
10+
- 'enhancement'
11+
- 'feature'
12+
default: patch
13+
categories:
14+
- title: 'Features'
15+
labels:
16+
- 'feature'
17+
- 'enhancement'
18+
- title: 'Bug Fixes'
19+
labels:
20+
- 'bug-fix'
21+
- title: 'Breaking changes ⚠️'
22+
label: 'breaking-change'
23+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
24+
template: |
25+
## Changes
26+
27+
$CHANGES
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
update_release_draft:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: release-drafter/release-drafter@v5
13+
with:
14+
config-name: release-draft-template.yaml
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)