Test MJCF descriptions with Pinocchio #228
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" |