Bump the production-dependencies group across 1 directory with 4 updates #636
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: Required Reviews | |
| on: | |
| pull_request_review: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| check: | |
| name: Checking required reviews | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
| steps: | |
| - name: Generate a token | |
| id: generate-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.REQUIRED_REVIEWS_APP_ID }} | |
| private-key: ${{ secrets.REQUIRED_REVIEWS_APP_KEY }} | |
| - uses: Automattic/[email protected] | |
| with: | |
| token: ${{ steps.generate-token.outputs.token }} | |
| status: Required Reviews | |
| requirements: | | |
| - name: Cloud provider files | |
| paths: | |
| - '.github/' | |
| - 'terraform/' | |
| teams: | |
| - "officers" | |
| - "infra-chairs" | |
| - name: Base Requirement | |
| paths: unmatched | |
| teams: | |
| - "officers" | |
| - "infra-chairs" | |
| - "infra-leads" |