Renders release notes for next release #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
toTag: ${{ githubg.ref }} | ||
Check failure on line 17 in .github/workflows/review-release-notes.yml GitHub Actions / Renders release notes for next releaseInvalid workflow file
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Dump changelog | ||
run: echo "${{ steps.build_changelog.outputs.changelog }}" >> $GITHUB_STEP_SUMMARY |