Skip to content

Commit

Permalink
Synchronize tests-integration.yml from v8 and v7
Browse files Browse the repository at this point in the history
Co-authored-by: david alvarado <alvaradoda@vmware>
  • Loading branch information
moleske and david alvarado committed Dec 7, 2023
1 parent 35ca3ac commit 2b11a1c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 2b11a1c

Please sign in to comment.