.github: Remove result check from PROpenUpdateGateTests

This commit is contained in:
George Joseph 2023-06-27 05:17:45 -06:00
parent 44c0e1b756
commit b008fd5919
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: