#0: Update checkout to v4 to get rid of Node 16 warning #19
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: Changelog creation test flow | |
on: | |
push: | |
branches: ["main", "release"] | |
workflow_dispatch: | |
jobs: | |
get-changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create changelog | |
id: create-changelog | |
uses: mikepenz/release-changelog-builder-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ignorePreReleases: true | |
failOnError: true | |
- name: Output changelog | |
run: echo "${{ steps.create-changelog.outputs.changelog }}" |