From cf6516ffab24cc6ebc8b167dba53567ab1e60eb6 Mon Sep 17 00:00:00 2001 From: wuhuanzhou Date: Fri, 21 Jan 2022 13:49:08 +0800 Subject: [PATCH] update recommend member (#39083) * update recommend member, test=document_fix * remove update of UB rule file, test=document_fix --- paddle/scripts/paddle_build.sh | 4 ++-- tools/ci_op_benchmark.sh | 4 ++-- tools/test_ci_op_benchmark.sh | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/paddle/scripts/paddle_build.sh b/paddle/scripts/paddle_build.sh index 7a2fa58be49..cf326a68e59 100755 --- a/paddle/scripts/paddle_build.sh +++ b/paddle/scripts/paddle_build.sh @@ -2347,11 +2347,11 @@ function collect_ccache_hits() { function test_op_benchmark() { # The PR will pass quickly when get approval from specific person. - # Xreki 12538138, luotao1 6836917, Avin0323 23427135 + # Xreki 12538138, luotao1 6836917, ZzSean 32410583 set +x approval_line=$(curl -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/PaddlePaddle/Paddle/pulls/${GIT_PR_ID}/reviews?per_page=10000) if [ "${approval_line}" != "" ]; then - APPROVALS=$(echo ${approval_line} | python ${PADDLE_ROOT}/tools/check_pr_approval.py 1 23427135 12538138 6836917) + APPROVALS=$(echo ${approval_line} | python ${PADDLE_ROOT}/tools/check_pr_approval.py 1 32410583 12538138 6836917) echo "current pr ${GIT_PR_ID} got approvals: ${APPROVALS}" if [ "${APPROVALS}" == "TRUE" ]; then echo "===================================" diff --git a/tools/ci_op_benchmark.sh b/tools/ci_op_benchmark.sh index 48074c20577..f2f83c8dfbb 100644 --- a/tools/ci_op_benchmark.sh +++ b/tools/ci_op_benchmark.sh @@ -286,11 +286,11 @@ function gpu_op_benchmark { # The PR will pass quickly when get approval from specific person. -# Xreki 12538138, luotao1 6836917, Avin0323 23427135 +# Xreki 12538138, luotao1 6836917, ZzSean 32410583 set +x approval_line=$(curl -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/PaddlePaddle/Paddle/pulls/${GIT_PR_ID}/reviews?per_page=10000) if [ -n "${approval_line}" ]; then - APPROVALS=$(echo ${approval_line} | python ${PADDLE_ROOT}/tools/check_pr_approval.py 1 23427135 12538138 6836917) + APPROVALS=$(echo ${approval_line} | python ${PADDLE_ROOT}/tools/check_pr_approval.py 1 32410583 12538138 6836917) LOG "[INFO] current pr ${GIT_PR_ID} got approvals: ${APPROVALS}" if [ "${APPROVALS}" == "TRUE" ]; then LOG "[INFO] ===================================" diff --git a/tools/test_ci_op_benchmark.sh b/tools/test_ci_op_benchmark.sh index 25e613dd6bc..bf70d8bc3a4 100644 --- a/tools/test_ci_op_benchmark.sh +++ b/tools/test_ci_op_benchmark.sh @@ -273,7 +273,7 @@ function check_CHANGE_OP_MAP { done if [ $exit_code -ne 0 ]; then LOG "[INFO] See https://github.com/PaddlePaddle/Paddle/wiki/PR-CI-OP-benchmark-Manual for details." - LOG "[INFO] Or you can apply for one RD (Avin0323(Recommend), Xreki, luotao1) approval to pass this PR." + LOG "[INFO] Or you can apply for one RD (ZzSean(Recommend), Xreki, luotao1) approval to pass this PR." exit $exit_code fi } @@ -317,11 +317,11 @@ function gpu_op_benchmark { } # The PR will pass quickly when get approval from specific person. -# Xreki 12538138, luotao1 6836917, Avin0323 23427135 +# Xreki 12538138, luotao1 6836917, ZzSean 32410583 set +x approval_line=$(curl -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/PaddlePaddle/Paddle/pulls/${GIT_PR_ID}/reviews?per_page=10000) if [ -n "${approval_line}" ]; then - APPROVALS=$(echo ${approval_line} | python ${PADDLE_ROOT}/tools/check_pr_approval.py 1 23427135 12538138 6836917) + APPROVALS=$(echo ${approval_line} | python ${PADDLE_ROOT}/tools/check_pr_approval.py 1 32410583 12538138 6836917) LOG "[INFO] current pr ${GIT_PR_ID} got approvals: ${APPROVALS}" if [ "${APPROVALS}" == "TRUE" ]; then LOG "[INFO] ===================================" -- GitLab