Skip to content

Commit 3c2fd43

Browse files
committed
Add workflow to preview the changelog
1 parent de41213 commit 3c2fd43

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Renders release notes for next release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
preview:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: 'Checkout Repository'
11+
uses: actions/checkout@v4
12+
- name: Build changelog
13+
id: build_changelog
14+
uses: mikepenz/release-changelog-builder-action@v4
15+
with:
16+
configuration: changelog_config.json
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
- name: Dump changelog
20+
run: echo "${{ steps.build_changelog.outputs.changelog }}" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)