From ef63706bd6308a09c20d334312e38c6b0f64f664 Mon Sep 17 00:00:00 2001 From: G <41178744+catomean@users.noreply.github.com> Date: Fri, 28 Aug 2026 08:07:49 +0200 Subject: [PATCH] fix(ci): point Actions at the bitbaum org, so merges and deploys resume MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fleet moved to the bitbaum org. Actions' `uses:` resolver does not follow a repo transfer — unlike the REST API, `git clone` and `git push`, which all do. So every reference here still looked correct to every tool that could be used to check it, while the runs died before a single job started: zero jobs, no logs, and a bare "workflow file issue". That failure mode is invisible in the usual places. A PR shows CLEAN and MERGEABLE with no red check, because the workflow that would have reported the red never ran. Nothing is marked broken; work simply stops moving. Files changed: auto-merge.yml deploy.yml Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UvjGNAS9CMfEGNW26tUR4P --- .github/workflows/auto-merge.yml | 4 ++-- .github/workflows/deploy.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index e678e83..1e2a0dd 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -1,7 +1,7 @@ # Auto-merge — nobody is in the merge loop. # # Green, ready PRs merge themselves and deploy themselves. The policy lives in -# ONE place for the whole fleet — maonakamoto/dotfiles, scripts/ci/auto-merge-sweep.sh +# ONE place for the whole fleet — bitbaum/dotfiles, scripts/ci/auto-merge-sweep.sh # — and this file only says "run it, here, with these settings". # # It used to be a ~245-line copy of that script. Twenty-two repos held such a @@ -39,7 +39,7 @@ permissions: jobs: sweep: - uses: maonakamoto/dotfiles/.github/workflows/auto-merge-sweep.yml@master + uses: bitbaum/dotfiles/.github/workflows/auto-merge-sweep.yml@master with: base_branch: main ci_workflow: ci.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9d79d2c..00c9dca 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,7 +1,7 @@ name: Deploy # Push to main → deploy this app to bitbaum. All the logic lives in one -# place: maonakamoto/fleetcrown/.github/workflows/selfhost-deploy.yml +# place: bitbaum/fleetcrown/.github/workflows/selfhost-deploy.yml # (docs: docs/infrastructure/self-host-cd.md there). It waits for this # commit's own CI to go green before anything reaches the box. @@ -15,7 +15,7 @@ on: jobs: deploy: - uses: maonakamoto/fleetcrown/.github/workflows/selfhost-deploy.yml@main + uses: bitbaum/fleetcrown/.github/workflows/selfhost-deploy.yml@main with: app: sink secrets: inherit