From 97aa4d1cbe9a3dab79fc081d910e5e6ebf0916ed Mon Sep 17 00:00:00 2001 From: Yuzviak Date: Thu, 16 Apr 2026 23:25:41 +0300 Subject: [PATCH] ci: trigger workflow on PRs to stage* branches too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The comment above `on:` says "push and PR to main/dev/stage*" but the pull_request trigger only listed [main, dev]. Result: PRs into stage branches got no automated lint/test run — we noticed when PR #1 (into stage1) showed "no checks reported". Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3461f06..c893f66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: push: branches: [main, dev, "stage*"] pull_request: - branches: [main, dev] + branches: [main, dev, "stage*"] jobs: # ---------------------------------------------------------------------------