.github: Set exit 0 in CherryPick and Recheck workflow Cleanup steps

(cherry picked from commit 510dd89511)
This commit is contained in:
George Joseph
2025-01-05 10:35:22 -07:00
committed by Asterisk Development Team
parent 4775c405ce
commit 4cfcca8916
2 changed files with 4 additions and 4 deletions

View File

@@ -93,7 +93,7 @@ jobs:
secrets: secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }} TOKEN: ${{ secrets.GITHUB_TOKEN }}
Summary: Cleanup:
if: ${{ success() || failure() }} if: ${{ success() || failure() }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Setup,Check] needs: [Setup,Check]
@@ -120,5 +120,5 @@ jobs:
--remove-label ${{ vars.CHERRY_PICK_TESTING_IN_PROGRESS }} \ --remove-label ${{ vars.CHERRY_PICK_TESTING_IN_PROGRESS }} \
--add-label $label \ --add-label $label \
$PR_NUMBER || : $PR_NUMBER || :
exit $rc exit 0

View File

@@ -59,7 +59,7 @@ jobs:
secrets: secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }} TOKEN: ${{ secrets.GITHUB_TOKEN }}
Summary: Cleanup:
if: ${{ success() || failure() }} if: ${{ success() || failure() }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Setup,ReCheck] needs: [Setup,ReCheck]
@@ -86,4 +86,4 @@ jobs:
--remove-label ${{ vars.PR_SUBMIT_TESTING_IN_PROGRESS }} \ --remove-label ${{ vars.PR_SUBMIT_TESTING_IN_PROGRESS }} \
--add-label $label \ --add-label $label \
$PR_NUMBER || : $PR_NUMBER || :
exit $rc exit 0