aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/automation_request_review.yml
blob: c31f582864d2faeb9941b112ad736c1aec51e661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Request Review
permissions:
  pull-requests: write
on:
  pull_request_target:
    types: [opened, reopened, ready_for_review, synchronize]
    branches-ignore:
      - "release-please--**"

jobs:
  # Request review automatically when PRs are opened
  request_review:
    runs-on: ubuntu-latest
    steps:
      - name: Request Review
        uses: actions/github-script@v7
        if: github.actor != 'stevearc'
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}
          script: |
            const pr = context.payload.pull_request;
            github.rest.pulls.requestReviewers({
              owner: context.repo.owner,
              repo: context.repo.repo,
              pull_number: pr.number,
              reviewers: ['stevearc']
            });