According to https://docs.github.com/en/rest/pulls/reviews?apiVersion=2022-11-28#list-reviews-for-a-pull-request, the number of results per page default is 30 (max 100). review of APPROVED after 30 will not be listed, change to 100 to fix it.
61 lines
2.3 KiB
YAML
61 lines
2.3 KiB
YAML
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
---
|
|
name: Need_2_Approval
|
|
|
|
on:
|
|
pull_request_review:
|
|
types: [submitted]
|
|
jobs:
|
|
Need_2_Approval:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 3
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: |
|
|
pr_num=${{ github.event.pull_request.number }}
|
|
echo $pr_num
|
|
if [ -z "$pr_num" ]; then
|
|
echo "PR number is not set"
|
|
exit 1
|
|
fi
|
|
response=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }} " "https://api.github.com/repos/apache/doris/pulls/${pr_num}/reviews?per_page=100")
|
|
# shellcheck disable=SC2207
|
|
reviewers=($(echo $response | jq -r '.[] | .user.login'))
|
|
# shellcheck disable=SC2207
|
|
statuses=($(echo $response | jq -r '.[] | .state'))
|
|
echo "${reviewers[@]}"
|
|
echo "${statuses[@]}"
|
|
approves=()
|
|
reviewers_unique=()
|
|
for ((i=${#reviewers[@]}-1;i>=0;i--)); do
|
|
if ! echo "${reviewers_unique[@]}" | grep -q -w "${reviewers[$i]}" && [ "${statuses[$i]}" != "COMMENTED" ]; then
|
|
reviewers_unique+=( "${reviewers[$i]}" )
|
|
if [ "${statuses[$i]}" == "APPROVED" ]; then
|
|
approves+=( "${reviewers[$i]}" )
|
|
fi
|
|
fi
|
|
done
|
|
echo "${approves[@]}"
|
|
if [ ${#approves[@]} -lt 2 ]; then
|
|
echo "PR ${pr_num} has not been approved by at least 2 reviewers"
|
|
# shellcheck disable=SC2242
|
|
exit 1
|
|
fi
|
|
echo "Thanks for your contribution to Doris."
|
|
exit 0
|