Skip to content

Commit 5001e27

Browse files
committed
Add release-drafter configuration
Resolves adamrehn#188
1 parent 4e6e64b commit 5001e27

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/release-drafter.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
version-resolver:
4+
default: patch
5+
template: |
6+
## Changes
7+
8+
$CHANGES

.github/workflows/release-drafter.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
update_release_draft:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: release-drafter/release-drafter@v5
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)