From f1f68e66534124e5e8e541b59d05fc1601fc4fe2 Mon Sep 17 00:00:00 2001 From: Kuzz007 Date: Mon, 27 Jul 2026 00:35:50 +0300 Subject: [PATCH] ci: trigger CI on workflow-file changes too The push/pull_request paths filter didn't include .github/workflows/**, so the previous commit (fixing the Audit step) never actually ran through CI -- editing the workflow itself silently skipped the trigger. A broken workflow-syntax change could merge untested the same way. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60247c417..4d4fe2c65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ on: - "go.sum" - "frontend/**" - ".nvmrc" + - ".github/workflows/**" push: branches: - main @@ -17,6 +18,7 @@ on: - "go.sum" - "frontend/**" - ".nvmrc" + - ".github/workflows/**" permissions: contents: read