Skip to content

Commit 93df8c8

Browse files
authored
build: Setup release-drafter (#142)
1 parent c52e04f commit 93df8c8

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/release-drafter.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name-template: 'v$NEXT_PATCH_VERSION'
2+
tag-template: 'v$NEXT_PATCH_VERSION'
3+
categories:
4+
- title: '🚀 Features'
5+
labels:
6+
- 'feature'
7+
- title: '🐛 Bug Fixes'
8+
labels:
9+
- 'bug'
10+
- title: '🧰 Maintenance'
11+
labels:
12+
- 'dependency-update'
13+
- 'build'
14+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
15+
template: |
16+
## Changes
17+
18+
$CHANGES

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@ jobs:
1515
java-version: 1.8
1616
- name: Check/Compile/Test
1717
run: sbt checkAll
18+
update_release_draft:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: release-drafter/release-drafter@v5
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)