aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/automation_request_review.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/automation_request_review.yml')
-rw-r--r--.github/workflows/automation_request_review.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/automation_request_review.yml b/.github/workflows/automation_request_review.yml
index c973470..b912cc0 100644
--- a/.github/workflows/automation_request_review.yml
+++ b/.github/workflows/automation_request_review.yml
@@ -2,8 +2,10 @@ name: Request Review
permissions:
pull-requests: write
on:
- pull_request:
- types: [opened, ready_for_review]
+ pull_request_target:
+ types: [opened, reopened, ready_for_review]
+ branches-ignore:
+ - "release-please--**"
jobs:
# Request review automatically when PRs are opened
@@ -16,11 +18,9 @@ jobs:
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']
- });
- }
+ github.rest.pulls.requestReviewers({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ pull_number: pr.number,
+ reviewers: ['stevearc']
+ });