From 4b7d95ff55a292c00bc08766e9e84f9fba86569d Mon Sep 17 00:00:00 2001 From: srpatcha Date: Sun, 30 Aug 2026 22:09:07 -0700 Subject: [PATCH] ci: run the build-and-test workflow on master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ci.yml watched `main` and `develop`. Neither exists — this repository's default branch is `master`, so every push to it and every pull request against it fell outside the trigger. Last run of ci.yml: 2026-05-31. A repository-wide rename from main to master in late May left the workflow pointing at a branch that had gone, and nothing has built or tested a change here since. master is added rather than substituted, on both push and pull_request, so a rename in either direction does not break this again. Expect the first run to be red. Three months of changes have landed unverified; finding that out is the point. Same fix as embeddedos-org/eAI#39, where it is verified to work: the PR went from a single skipped `assign` job to `C/C++ Tests` and `Python Tests` actually running. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1747931..6f52936 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,10 +2,10 @@ name: CI — eBrowser on: push: - branches: [main, develop] + branches: [master, main, develop] tags: ["v*"] pull_request: - branches: [main] + branches: [master, main] jobs: # ── Test Matrix ───────────────────────────────────────────────────────────