File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments