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 de41213 commit 3c2fd43Copy full SHA for 3c2fd43
.github/workflows/review-release-notes.yml
@@ -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