From 157d478b27c7f6adcd473f0a59f54a2d2e415073 Mon Sep 17 00:00:00 2001 From: George Joseph Date: Mon, 26 Jun 2023 07:46:03 -0600 Subject: [PATCH] .github: Add recheck label test to additional jobs (cherry picked from commit 91503078ffaffa4105ec6ac7224144f83e4daf19) --- .github/workflows/PROpenedOrUpdated.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/PROpenedOrUpdated.yml b/.github/workflows/PROpenedOrUpdated.yml index af8a507b4a..a1b93982f0 100644 --- a/.github/workflows/PROpenedOrUpdated.yml +++ b/.github/workflows/PROpenedOrUpdated.yml @@ -107,6 +107,7 @@ jobs: ${{env.PR_NUMBER}} || : PROpenUpdateGateTestMatrix: + if: ${{ github.event.action != 'labeled' || github.event.label.name == vars.RECHECK_LABEL }} needs: PROpenUpdateUnitTests continue-on-error: false strategy: @@ -131,7 +132,7 @@ jobs: PROpenUpdateGateTests: - if: always() + if: ${{ ( github.event.action != 'labeled' || github.event.label.name == vars.RECHECK_LABEL ) && contains(['success','skipped','failure'], needs.PROpenUpdateGateTestMatrix.result ) }} runs-on: ubuntu-latest needs: PROpenUpdateGateTestMatrix steps: