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.yml" action ans scripts | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| paths: | |
| - '.github/workflows/check-release-notes-reusable.yml' | |
| - '.github/workflows/check-release-notes-reusable-check.yml' | |
| - 'tools' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: JetBrains/compose-multiplatform/.github/actions/check-release-notes.yml | |
| with: | |
| checkout_ref: '$GITHUB_REF' |