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: certified-18.9-cert15~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0cae901c975bdc07c5f14f79a56390bb14b1c8df;p=thirdparty%2Fasterisk.git .github: Set exit 0 in CherryPick and Recheck workflow Cleanup steps (cherry picked from commit ff94f597c0dfcd1ad2370a0a4988742cb6fe098b) --- 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