aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/automation_request_review.yml
blob: 998e64a7f27ee61902aa6b5432f188a688089965 (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
name: Request Review
on:
  pull_request:
    types: [opened, ready_for_review]

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