-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Comment on cherry pick PR on failure (#527)
b/301453749 (cherry picked from commit 73a4d2d)
- Loading branch information
1 parent
f59326f
commit 2ffa92c
Showing
1 changed file
with
24 additions
and
5 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 |
---|---|---|
|
@@ -71,29 +71,48 @@ jobs: | |
git config --global user.email "[email protected]" | ||
- name: Cherry pick merge commit | ||
id: cherry-pick | ||
continue-on-error: true | ||
run: | | ||
git fetch origin ${{ matrix.target_branch }} | ||
set +e | ||
git cherry-pick -x $MERGE_COMMIT_SHA | ||
RES=$? | ||
set -e | ||
if [ $RES -eq 0 ]; then | ||
echo "CREATE_PR_AS_DRAFT=false" >> $GITHUB_ENV | ||
else | ||
echo "CREATE_PR_AS_DRAFT=true" >> $GITHUB_ENV | ||
if [ $RES -ne 0 ]; then | ||
git add . | ||
git cherry-pick --continue | ||
fi | ||
exit $RES | ||
- name: Create Pull Request | ||
id: create-pr | ||
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4.2.3 | ||
with: | ||
token: ${{ secrets.CHERRY_PICK_TOKEN }} | ||
draft: ${{ env.CREATE_PR_AS_DRAFT }} | ||
draft: ${{ steps.cherry-pick.outcome == 'failure' }} | ||
base: ${{ matrix.target_branch }} | ||
branch: "${{ matrix.target_branch }}-${{ github.event.pull_request.number }}" | ||
committer: GitHub Release Automation <[email protected]> | ||
reviewers: ${{ github.event.pull_request.user.login }} | ||
title: "Cherry pick PR #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}" | ||
body: | | ||
<<<<<<< HEAD | ||
"Refer to the original PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}" | ||
======= | ||
Refer to the original PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} | ||
|
||
${{ github.event.pull_request.body }} | ||
- name: PR Comment | ||
if: ${{ success() && steps.cherry-pick.outcome == 'failure' }} | ||
uses: actions/github-script@v2 | ||
with: | ||
github-token: ${{ secrets.CHERRY_PICK_TOKEN }} | ||
script: | | ||
github.issues.createComment({ | ||
issue_number: ${{ steps.create-pr.outputs.pull-request-number }}, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: '[!IMPORTANT]\nThe cherry-pick failed! Check out the PR branch (${{ matrix.target_branch }}-${{ github.event.pull_request.number }}) and fix the conflicts before proceeding.' | ||
}) | ||
>>>>>>> 73a4d2d4c20 (Comment on cherry pick PR on failure (#527)) |