Skip to content

Commit 0ff309a

Browse files
committed
chore: alternatively draft release from conventional commits
1 parent 61b1ef0 commit 0ff309a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)