From 2b11a1c3809668ff88ee41d303de07e520dbb273 Mon Sep 17 00:00:00 2001 From: "M. Oleske" Date: Thu, 7 Dec 2023 14:41:03 -0800 Subject: [PATCH] Synchronize tests-integration.yml from v8 and v7 Co-authored-by: david alvarado --- .github/workflows/tests-integration.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests-integration.yml b/.github/workflows/tests-integration.yml index 4d886beb819..e08fcb0794a 100644 --- a/.github/workflows/tests-integration.yml +++ b/.github/workflows/tests-integration.yml @@ -13,7 +13,7 @@ on: jobs: run-integration-tests-cf-env-with-edge-capi: name: Integration tests with EDGE CAPI - if: github.event.workflow_run.conclusion == 'success' + if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} uses: ./.github/workflows/tests-integration-reusable.yml with: capi-version: edge @@ -24,7 +24,7 @@ jobs: run-integration-tests-cf-env-with-edge-capi-with-client-creds: name: EDGE CAPI and client creds - if: github.event.workflow_run.conclusion == 'success' + if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} uses: ./.github/workflows/tests-integration-reusable.yml with: capi-version: edge @@ -35,7 +35,7 @@ jobs: run-integration-tests-cf-env-with-min-capi: name: MIN CAPI - if: github.event.workflow_run.conclusion == 'success' + if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} uses: ./.github/workflows/tests-integration-reusable.yml with: capi-version: min @@ -46,7 +46,7 @@ jobs: #run-integration-windows: # name: Windows - # if: github.event.workflow_run.conclusion == 'success' + # if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} # uses: ./.github/workflows/tests-integration-reusable.yml # with: # capi-version: edge @@ -57,7 +57,7 @@ jobs: #run-integration-windows-client-credentials: # name: Windows with client credentials - # if: github.event.workflow_run.conclusion == 'success' + # if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} # uses: ./.github/workflows/tests-integration-reusable.yml # with: # capi-version: edge