From: George Joseph Date: Sun, 5 Jan 2025 17:35:22 +0000 (-0700) Subject: .github: Set exit 0 in CherryPick and Recheck workflow Cleanup steps X-Git-Tag: 21.7.0-rc1~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c38c3de0639b6c4fcadf259cc44cfe6a8b7832cd;p=thirdparty%2Fasterisk.git .github: Set exit 0 in CherryPick and Recheck workflow Cleanup steps (cherry picked from commit aff11f717f7bcc8151ff9f4a0c7a2f396e031de8) --- 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