Add example with the Candlewick visualizer #145
Workflow file for this run
This file contains hidden or 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 | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
changelog: | |
name: "Check changelog update" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tarides/changelog-check-action@v2 | |
with: | |
changelog: CHANGELOG.md | |
changelog_success: | |
name: "Changelog success" | |
runs-on: ubuntu-latest | |
needs: [changelog] | |
steps: | |
- run: echo "Changelog workflow completed successfully" |