From 68a116ad315dfc6f45933d795bbcea2514ca100d Mon Sep 17 00:00:00 2001 From: Kobi Hikri Date: Tue, 14 Jul 2026 21:49:43 +0300 Subject: [PATCH] ci(zizmor): trigger on push to master, not the non-existent main The default branch is master; there is no main branch, so the push-triggered zizmor scan never runs on the default branch (only PRs are covered). Point it at master so the push scan and code-scanning baseline actually populate. --- .github/workflows/zizmor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml index b0f811f76..eebbaa263 100644 --- a/.github/workflows/zizmor.yml +++ b/.github/workflows/zizmor.yml @@ -2,7 +2,7 @@ name: GitHub Actions Security Analysis (zizmor) on: push: - branches: ["main"] + branches: ["master"] pull_request: branches: ["**"]