Archive select tables whose entries expire #415
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: 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" |