From e8410a8d9f9a88bcffbc17ac24c4349503f72fa4 Mon Sep 17 00:00:00 2001 From: IlyasMoutawwakil Date: Sat, 21 Sep 2024 11:02:07 +0200 Subject: [PATCH] test backend specific labels --- .github/workflows/test_cli_cpu_ipex.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_cli_cpu_ipex.yaml b/.github/workflows/test_cli_cpu_ipex.yaml index 82d78357..27eadc58 100644 --- a/.github/workflows/test_cli_cpu_ipex.yaml +++ b/.github/workflows/test_cli_cpu_ipex.yaml @@ -20,7 +20,12 @@ concurrency: jobs: run_cli_cpu_ipex_tests: - if: ${{ (github.event_name == 'workflow_dispatch') || (github.event_name == 'push') || contains( github.event.pull_request.labels.*.name, 'cpu') }} + if: ${{ + (github.event_name == 'push') || + (github.event_name == 'workflow_dispatch') || + contains( github.event.pull_request.labels.*.name, 'cpu') || + contains( github.event.pull_request.labels.*.name, 'ipex') + }} runs-on: ubuntu-latest