We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c52e04f commit 93df8c8Copy full SHA for 93df8c8
.github/release-drafter.yml
@@ -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
9
+ - 'bug'
10
+ - title: '🧰 Maintenance'
11
12
+ - 'dependency-update'
13
+ - 'build'
14
+change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
15
+template: |
16
+ ## Changes
17
+
18
+ $CHANGES
.github/workflows/build.yml
@@ -15,3 +15,9 @@ jobs:
java-version: 1.8
- name: Check/Compile/Test
run: sbt checkAll
+ 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