Skip to content

Commit

Permalink
[CI] Fix manual triggering of SYCL E2E workflow (#15529)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
uditagarwal97 authored Oct 10, 2024
1 parent 9cd5a3b commit 1e44eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ permissions:

jobs:
run:
if: inputs.skip_run == 'false'
if: github.event_name == 'workflow_dispatch' || inputs.skip_run == 'false'
name: ${{ inputs.name }}
runs-on: ${{ fromJSON(inputs.runner) }}
container:
Expand Down

0 comments on commit 1e44eda

Please sign in to comment.