schema: Add Odin language #107
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: SCIP protocol review | |
| on: | |
| pull_request_target: | |
| paths: [scip.proto] | |
| pull_request_review: | |
| permissions: | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| proto-review: | |
| # `pull_request_review` is read-only on forks; otherwise the workflow would | |
| # use a GitHub token without the necessary permissions. Restart the failed | |
| # workflow once all approvals are gathered. | |
| if: >- | |
| github.event_name == 'pull_request_target' || | |
| github.event.pull_request.head.repo.full_name == github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: Automattic/action-required-review@v5 | |
| with: | |
| token: ${{ github.token }} | |
| request-reviews: true | |
| requirements: | | |
| - name: SCIP CSC | |
| paths: | |
| - scip.proto | |
| teams: | |
| - all-of: | |
| - is-author-or-reviewer: | |
| - '@jupblb' | |
| - is-author-or-reviewer: | |
| - '@CatherineGasnier' | |
| - is-author-or-reviewer: | |
| - '@jamydev' |