-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copied from paritytech/polkadot-sdk#3431
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Review-Trigger | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- review_requested | ||
- review_request_removed | ||
- ready_for_review | ||
pull_request_review: | ||
|
||
jobs: | ||
trigger-review-bot: | ||
# (It is not a draft) && (it is not a review || it is an approving review) | ||
if: ${{ github.event.pull_request.draft != true && (github.event_name != 'pull_request_review' || (github.event.review && github.event.review.state == 'APPROVED')) }} | ||
runs-on: ubuntu-latest | ||
name: trigger review bot | ||
steps: | ||
- name: Skip merge queue | ||
if: ${{ contains(github.ref, 'gh-readonly-queue') }} | ||
run: exit 0 | ||
- name: Fail when author pushes new code | ||
# Require new reviews when the author is pushing and he is not a member | ||
if: | | ||
github.event_name == 'pull_request_target' && | ||
github.event.action == 'synchronize' && | ||
github.event.sender.login == github.event.pull_request.user.login && | ||
github.event.pull_request.author_association != 'MEMBER' | ||
run: | | ||
echo "::error::Project needs to be reviewed again" | ||
# We get the list of reviewers who approved the PR | ||
REVIEWERS=$(gh api repos/${{ github.repository }}/pulls/${{ github.event.number }}/reviews \ | ||
--jq '{reviewers: [.[] | select(.state == "APPROVED") | .user.login]}') | ||
# We request them to review again | ||
echo $REVIEWERS | gh api --method POST repos/${{ github.repository }}/pulls/${{ github.event.number }}/requested_reviewers --input - | ||
exit 1 | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
- name: Get PR number | ||
env: | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
run: | | ||
echo "Saving PR number: $PR_NUMBER" | ||
mkdir -p ./pr | ||
echo $PR_NUMBER > ./pr/pr_number | ||
- uses: actions/upload-artifact@v3 | ||
name: Save PR number | ||
with: | ||
name: pr_number | ||
path: pr/ | ||
retention-days: 5 |