From ff744894298ea6e120e0f6c3a41da0a9f039653c Mon Sep 17 00:00:00 2001 From: "Agarwal, Udit" Date: Mon, 16 Sep 2024 15:52:13 -0700 Subject: [PATCH] Another try --- .github/workflows/sycl-linux-precommit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sycl-linux-precommit.yml b/.github/workflows/sycl-linux-precommit.yml index 67ae9ce6fc5ec..afd0b9c4ec792 100644 --- a/.github/workflows/sycl-linux-precommit.yml +++ b/.github/workflows/sycl-linux-precommit.yml @@ -117,9 +117,9 @@ jobs: env: ${{ matrix.env || '{}' }} install_igc_driver: ${{ contains(needs.detect_changes.outputs.filters, 'drivers') }} - install_dev_igc_driver: ${{matrix.use_igc_dev || 'false'}} && ${{ contains(needs.detect_changes.outputs.filters, 'devigccfg') }} + install_dev_igc_driver: ${{ matrix.use_igc_dev && contains(needs.detect_changes.outputs.filters, 'devigccfg') || 'false' }} # Run only if the PR does not have the 'ci-no-devigc' label. - skip_run: ${{matrix.use_igc_dev || 'false'}} && ${{ contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') }} + skip_run: ${{matrix.use_igc_dev && contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') || 'false'}} ref: ${{ github.sha }} merge_ref: ''