Skip to content

Commit

Permalink
Add workflow to preview the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimumCode committed Jun 9, 2024
1 parent de41213 commit 3c2fd43
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/review-release-notes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Renders release notes for next release

on:
workflow_dispatch:

jobs:
preview:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: Build changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: changelog_config.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Dump changelog
run: echo "${{ steps.build_changelog.outputs.changelog }}" >> $GITHUB_STEP_SUMMARY

0 comments on commit 3c2fd43

Please sign in to comment.