Skip to content

Commit 67f6f63

Browse files
authored
Merge branch 'main' into cf-push-deployment-scale
2 parents 1f98a02 + ffc2ab9 commit 67f6f63

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests-integration.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
echo "checkout else ${{ github.event.workflow_run.head_sha }}"
5050
echo "ref=${{github.event.workflow_run.head_sha}}" >> $GITHUB_OUTPUT
5151
fi
52+
echo "Event: ${{ github.event_name }}, Workflow Input: ${{ github.event.inputs.workflow }}"
5253
units:
5354
name: Basic units to gate for integration tests
5455
runs-on: ubuntu-latest
@@ -101,7 +102,7 @@ jobs:
101102
needs:
102103
- get-sha
103104
- set-env-name
104-
if: ${{ always() && (inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env') }}
105+
if: ${{ always() && (github.event_name != 'workflow_dispatch' || inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env') }}
105106
uses: ./.github/workflows/tests-integration-reusable.yml
106107
with:
107108
name: Integration
@@ -115,7 +116,7 @@ jobs:
115116
needs:
116117
- get-sha
117118
- set-env-name
118-
if: ${{ always() && (inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env-with-client-creds') }}
119+
if: ${{ always() && (github.event_name != 'workflow_dispatch' || inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env-with-client-creds') }}
119120
uses: ./.github/workflows/tests-integration-reusable.yml
120121
with:
121122
name: Integration client creds

0 commit comments

Comments
 (0)