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 61b1ef0 commit 0ff309aCopy full SHA for 0ff309a
.github/workflows/conventional-commits-draft.yml
@@ -0,0 +1,21 @@
1
+name: Draft Release based on Conventional Commits
2
+
3
+on: [workflow_dispatch]
4
5
+jobs:
6
+ build:
7
+ runs-on: 'ubuntu-latest'
8
+ steps:
9
+ - uses: actions/checkout@v5
10
+ with:
11
+ fetch-tags: 'true'
12
+ fetch-depth: '0'
13
+ - name: Setup java
14
+ uses: actions/setup-java@v5
15
16
+ distribution: 'zulu'
17
+ java-version: 17
18
+ - uses: tomasbjerre/git-changelog-github-release@main
19
+ env:
20
+ # Needs write permission in Github menu '/settings/actions'
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments