We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 48ba39c + cae545c commit dbd752bCopy full SHA for dbd752b
2 files changed
.github/release-drafter.yml
@@ -0,0 +1,3 @@
1
+_extends: .github
2
+name-template: v$NEXT_MINOR_VERSION 🌈
3
+tag-template: parameterized-scheduler-$NEXT_MINOR_VERSION
.github/workflows/release-drafter.yml
@@ -0,0 +1,16 @@
+# Automates creation of Release Drafts using Release Drafter
+# More Info: https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
+
4
+on:
5
+ push:
6
+ branches:
7
+ - master
8
9
+jobs:
10
+ update_release_draft:
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