We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2246a5e + 9a4f174 commit 10e0f02Copy full SHA for 10e0f02
2 files changed
.github/release-drafter.yml
@@ -0,0 +1,6 @@
1
+
2
+name-template: '$NEXT_PATCH_VERSION 🌈'
3
+tag-template: '$NEXT_PATCH_VERSION'
4
+template: |
5
+ ## What’s Changed
6
+ $CHANGES
.github/workflows/master-merge.yml
@@ -0,0 +1,16 @@
+name: On Master Merge
+on:
+ push:
+ branches:
+ - master
7
8
+jobs:
9
+ draft-release-publish:
10
+ name: Draft a new release
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ # Drafts your next Release notes as Pull Requests are merged into "master"
14
+ - uses: release-drafter/release-drafter@v5
15
+ env:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments