From c38c3de0639b6c4fcadf259cc44cfe6a8b7832cd Mon Sep 17 00:00:00 2001 From: George Joseph Date: Sun, 5 Jan 2025 10:35:22 -0700 Subject: [PATCH] .github: Set exit 0 in CherryPick and Recheck workflow Cleanup steps (cherry picked from commit aff11f717f7bcc8151ff9f4a0c7a2f396e031de8) --- .github/workflows/OnPRCherryPickTest.yml | 4 ++-- .github/workflows/OnPRRecheck.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/OnPRCherryPickTest.yml b/.github/workflows/OnPRCherryPickTest.yml index f0b52f69f3..6eb805752c 100644 --- a/.github/workflows/OnPRCherryPickTest.yml +++ b/.github/workflows/OnPRCherryPickTest.yml @@ -93,7 +93,7 @@ jobs: secrets: TOKEN: ${{ secrets.GITHUB_TOKEN }} - Summary: + Cleanup: if: ${{ success() || failure() }} runs-on: ubuntu-latest needs: [Setup,Check] @@ -120,5 +120,5 @@ jobs: --remove-label ${{ vars.CHERRY_PICK_TESTING_IN_PROGRESS }} \ --add-label $label \ $PR_NUMBER || : - exit $rc + exit 0 diff --git a/.github/workflows/OnPRRecheck.yml b/.github/workflows/OnPRRecheck.yml index 3d0c4dd0c5..f86e0867fa 100644 --- a/.github/workflows/OnPRRecheck.yml +++ b/.github/workflows/OnPRRecheck.yml @@ -59,7 +59,7 @@ jobs: secrets: TOKEN: ${{ secrets.GITHUB_TOKEN }} - Summary: + Cleanup: if: ${{ success() || failure() }} runs-on: ubuntu-latest needs: [Setup,ReCheck] @@ -86,4 +86,4 @@ jobs: --remove-label ${{ vars.PR_SUBMIT_TESTING_IN_PROGRESS }} \ --add-label $label \ $PR_NUMBER || : - exit $rc + exit 0