summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-09-13 10:38:10 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2022-09-13 10:38:11 +0900
commit2e21fef6a4d10a12ef3f99b1fb9c0741a174b3cd (patch)
tree8745e744df57dd0097b37141fcc11f1b42e0f11b /.github
parent64cd097009f10e09e7e96abe3dce4c06bac43c29 (diff)
Drop synchronized event
because it doesn't seem to be working. It's a bit annoying that synchronized doesn't work, but in many cases, opened and ready_for_review should be enough. As a last resort, you could close/reopen it. Also, the token scope needs to be public_repo instead of repo:status.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/auto_request_review.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/auto_request_review.yml b/.github/workflows/auto_request_review.yml
index 0fc3e9d852..7e163de697 100644
--- a/.github/workflows/auto_request_review.yml
+++ b/.github/workflows/auto_request_review.yml
@@ -1,7 +1,7 @@
name: Auto Request Review
on:
pull_request_target:
- types: [opened, synchronized, ready_for_review, reopened]
+ types: [opened, ready_for_review, reopened]
jobs:
auto-request-review:
name: Auto Request Review
@@ -10,5 +10,5 @@ jobs:
- name: Request review based on files changes and/or groups the author belongs to
uses: necojackarc/auto-request-review@e08cdffa277d50854744de3f76230260e61c67f4 # v0.7.0, checking sha
with:
- # scope: repo:status
+ # scope: public_repo
token: ${{ secrets.MATZBOT_GITHUB_TOKEN }}