API Surface Comment #101
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
| # https://github.com/marketplace/actions/api-surface-check-for-php | |
| on: | |
| # zizmor: ignore[dangerous-triggers] workflow_run is required to comment on | |
| # PRs from forks; this workflow only runs a pinned action and does not check | |
| # out PR-controlled code. | |
| workflow_run: | |
| workflows: ["API Surface Check"] | |
| types: [completed] | |
| name: "API Surface Comment" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: api-surface-comment-${{ github.event.workflow_run.head_repository.full_name }}-${{ github.event.workflow_run.head_branch }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-api-surface: | |
| name: Check API Surface | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write # required to post the API surface diff comment on the PR | |
| steps: | |
| - uses: composer/api-surface-check@bba9f1cb940df6e02271b1b6158679ac0b3f39d3 # 1.0.1 |