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
| # Similar to check-release-notes.yml, but verifies that check-release-notes-reusable.yml itself. | |
| # Runs not against rules/scripts in the main branch but against the PR branch | |
| name: Check "check-release-notes" action ans scripts | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| # - run against the PR branch if workflow/scripts are changed (to verify and apply new rules in scripts) | |
| paths: | |
| - 'tools/changelog' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: JetBrains/compose-multiplatform/.github/actions/check-release-notes-github-action | |
| with: | |
| checkout_ref: '$GITHUB_REF' |