Run integration tests for PRs by gururajsh · Pull Request #3541 · cloudfoundry/cli
Expand Up
@@ -101,7 +101,7 @@ jobs:
needs:
- get-sha
- set-env-name
if: ${{ always() && (inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env') }}
if: ${{ always() && (github.event_name != 'workflow_dispatch' || inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env') }}
uses: ./.github/workflows/tests-integration-reusable.yml
with:
name: Integration
Expand All
@@ -115,7 +115,7 @@ jobs:
needs:
- get-sha
- set-env-name
if: ${{ always() && (inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env-with-client-creds') }}
if: ${{ always() && (github.event_name != 'workflow_dispatch' || inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env-with-client-creds') }}
uses: ./.github/workflows/tests-integration-reusable.yml
with:
name: Integration client creds
Expand Down