From 3778efd31c298b1d2c0a5016b30ce17ed069b20b Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Wed, 29 Jul 2026 12:08:28 +0200 Subject: [PATCH] ci: run CodeQL on pull requests CodeQL only ran on push to master and dev and on the weekly cron, so a regression was first seen after merge. Add the same trigger for pull requests targeting those branches, with the same paths-ignore list. Signed-off-by: mesutoezdil --- .github/workflows/codeql-analysis.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 71f4274069..71521c7dda 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -14,6 +14,13 @@ on: - "**/*.md" - "**/*.txt" - "**/*.yml" + pull_request: + branches: ["master","dev"] + paths-ignore: + - "**/*.json" + - "**/*.md" + - "**/*.txt" + - "**/*.yml" schedule: - cron: "0 4 * * 6"