ci: trigger workflow on PRs to stage* branches too

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) <noreply@anthropic.com>
This commit is contained in:
Yuzviak
2026-04-16 23:25:41 +03:00
committed by Maksym Yuzviak
parent f66b266219
commit 97aa4d1cbe
+1 -1
View File
@@ -5,7 +5,7 @@ on:
push:
branches: [main, dev, "stage*"]
pull_request:
branches: [main, dev]
branches: [main, dev, "stage*"]
jobs:
# ---------------------------------------------------------------------------