Skip to content

Commit 1e44eda

Browse files
[CI] Fix manual triggering of SYCL E2E workflow (#15529)
Currently, if we try to manually run SYCL E2E workflow, it does not execute any job. For example: https://github.com/intel/llvm/actions/runs/11062297137 This PR fixes that.
1 parent 9cd5a3b commit 1e44eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sycl-linux-run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ permissions:
151151

152152
jobs:
153153
run:
154-
if: inputs.skip_run == 'false'
154+
if: github.event_name == 'workflow_dispatch' || inputs.skip_run == 'false'
155155
name: ${{ inputs.name }}
156156
runs-on: ${{ fromJSON(inputs.runner) }}
157157
container:

0 commit comments

Comments
 (0)