.github: Remove result check from PROpenUpdateGateTests

(cherry picked from commit b008fd5919)
This commit is contained in:
George Joseph 2023-06-27 05:17:45 -06:00 committed by Asterisk Development Team
parent f6630916f4
commit 64ecad8309
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
name: PROpenedOrUpdated
run-name: "PR ${{github.event.number}} ${{github.event.action}} by ${{ github.actor }}"
run-name: "PR ${{github.event.number}} ${{github.event.action}} ${{github.event.label.name}} by ${{ github.actor }}"
on:
# workflow_dispatch:
pull_request_target:
@ -132,7 +132,7 @@ jobs:
PROpenUpdateGateTests:
if: ${{ ( github.event.action != 'labeled' || github.event.label.name == vars.RECHECK_LABEL ) && contains(fromJSON('["success","skipped","failure"]'), needs.PROpenUpdateGateTestMatrix.result ) }}
if: ${{ github.event.action != 'labeled' || github.event.label.name == vars.RECHECK_LABEL }}
runs-on: ubuntu-latest
needs: PROpenUpdateGateTestMatrix
steps: