diff --git a/scripts/cherry-pick.sh b/scripts/cherry-pick.sh index f2508d737f6..0e15c974312 100644 --- a/scripts/cherry-pick.sh +++ b/scripts/cherry-pick.sh @@ -71,6 +71,7 @@ git checkout -b $TARGET_BRANCH origin/$TARGET_BRANCH git cherry-pick $MERGE_COMMIT &> /tmp/error.log || ( gh pr comment $PR_NUMBER --body "🤖 says: Error cherry-picking.

$(cat /tmp/error.log)" + gh issue create --title "Error cherry-picking PR #$PR_NUMBER" --body "Error cherry-picking PR #$PR_NUMBER into $TARGET_BRANCH:

$(cat /tmp/error.log)" --assignee "cuisongliu" --label "cherry-pick" exit 1 )