Просмотр исходного кода

ci(qmd): extend dist-sync trigger to oivo branch (i-j1ld0121)

The CI workflow's push/pull_request triggers were scoped to branches:[main]
only, leaving the active fork branch oivo without protection. Sibling commit
29e11bd (i-9l2ueyyz) shipped the pre-commit hook + dist-sync job as twin
safety nets, but only main was wired to the CI safety net.

Reproduced live in the i-1rqixh6m / i-gfv5zq2z incident: a dist-without-
shebang commit shipped to oivo (99bd369), got fixed in 818c209 and
6129b08, but neither push triggered CI dist-sync because the workflow
trigger only fires on main. Fleet-bound JS could have shipped broken.

Two-line change: add oivo to both push.branches and pull_request.branches
arrays. Existing main behavior preserved (upstream untouched). No new
secrets or runner config — same test-node / test-bun / dist-sync matrix.

Generated with [Claude Code](https://claude.ai/code)
via [Oivo](https://oivo.com)

Co-Authored-By: Claude <noreply@anthropic.com>
Session-Id: d6a79169
root 3 недель назад
Родитель
Сommit
1c4424fe1b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      .github/workflows/ci.yml

+ 2 - 2
.github/workflows/ci.yml

@@ -2,9 +2,9 @@ name: CI
 
 on:
   push:
-    branches: [main]
+    branches: [main, oivo]
   pull_request:
-    branches: [main]
+    branches: [main, oivo]
 
 jobs:
   test-node: