You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI ran for 91 builds through May 5 (CI #69), then went dark. The monorepo restructure renamed .github/workflows/ → bifrost/.github/workflows/; GitHub only executes workflows from the repo-root.github/workflows/, so since that move no workflow runs on any push, PR, or tag — including every commit on main since. The CI badge in bifrost/README.md is now stale.
git ls-tree main -- .github/workflows/ → empty (no root workflows directory).
git show 19080e6 (the monorepo commit) → rename {.github => bifrost/.github}/workflows/ci.yml (100%).
Push to main or open a PR today → no workflow is triggered.
Expected behavior
CI (build + tests + lint) keeps running on push/PR as it did through May 5; the release workflow runs on v* tags.
Actual behavior
No runs since the monorepo restructure relocated the three workflows (ci.yml, build.yml, release.yml) into bifrost/.github/workflows/, a directory GitHub ignores. Their internal paths also still assume the repo root is bifrost/ (go-version-file: "go.work", cache-dependency-path: ui/package-lock.json) — i.e. they were authored when bifrost/ was its own repo.
Bifrost version
9eb7fdf (broken since the monorepo restructure landed, ~May 2026)
Go version
No response
Node.js version
No response
Operating system
Linux
Database driver
None
Logs & stack traces
Additional context
Fix: (a) move the three workflows back to the repo-root .github/workflows/; (b) fix the now-wrong relative paths — go-version-file: bifrost/go.work, cache-dependency-path: bifrost/ui/package-lock.json, and a working-directory: bifrost or root make delegation.
Summary
CI ran for 91 builds through May 5 (CI #69), then went dark. The
monoreporestructure renamed.github/workflows/→bifrost/.github/workflows/; GitHub only executes workflows from the repo-root.github/workflows/, so since that move no workflow runs on any push, PR, or tag — including every commit onmainsince. The CI badge inbifrost/README.mdis now stale.Steps to reproduce
git ls-tree main -- .github/workflows/→ empty (no root workflows directory).git show 19080e6(themonorepocommit) →rename {.github => bifrost/.github}/workflows/ci.yml (100%).mainor open a PR today → no workflow is triggered.Expected behavior
CI (build + tests + lint) keeps running on push/PR as it did through May 5; the release workflow runs on
v*tags.Actual behavior
No runs since the
monoreporestructure relocated the three workflows (ci.yml,build.yml,release.yml) intobifrost/.github/workflows/, a directory GitHub ignores. Their internal paths also still assume the repo root isbifrost/(go-version-file: "go.work",cache-dependency-path: ui/package-lock.json) — i.e. they were authored whenbifrost/was its own repo.Bifrost version
9eb7fdf(broken since the monorepo restructure landed, ~May 2026)Go version
No response
Node.js version
No response
Operating system
Linux
Database driver
None
Logs & stack traces
Additional context
Fix: (a) move the three workflows back to the repo-root
.github/workflows/; (b) fix the now-wrong relative paths —go-version-file: bifrost/go.work,cache-dependency-path: bifrost/ui/package-lock.json, and aworking-directory: bifrostor rootmakedelegation.