From 390cb4e97cad88f33049e7d5fa2ca8d92aa7a922 Mon Sep 17 00:00:00 2001 From: "Kornev, Nikita" Date: Wed, 12 Nov 2025 15:18:14 +0100 Subject: [PATCH] [CI] Update sycl-bandit.yml Launch the workflow on PR and push instead of schedule. --- .github/workflows/sycl-bandit.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sycl-bandit.yml b/.github/workflows/sycl-bandit.yml index 3a70e662f3c74..75d037a973e64 100644 --- a/.github/workflows/sycl-bandit.yml +++ b/.github/workflows/sycl-bandit.yml @@ -2,9 +2,16 @@ name: Scan Python code with Bandit on: workflow_dispatch: - schedule: - - cron: '0 3 * * *' - + pull_request: + branches: + - sycl + paths: + - '**/*.py' + push: + branches: + - sycl + paths: + - '**/*.py' permissions: contents: read