From 7d1a7c3f03a105b5eb95e235a24537830102e1f0 Mon Sep 17 00:00:00 2001 From: G <41178744+catomean@users.noreply.github.com> Date: Fri, 28 Aug 2026 08:10:56 +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 4e7371bd..503e0f52 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 — catomean/dotfiles, +# ONE place for the whole fleet — bitbaum/dotfiles, # scripts/ci/auto-merge-sweep.sh — and this file only says "run it, with these # settings". # @@ -39,7 +39,7 @@ permissions: jobs: sweep: - uses: catomean/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 1239d355..78059f58 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,7 +1,7 @@ name: Deploy # Push to main → deploy botsmann.orangecat.ch to bitbaum. All the logic lives in -# one place: catomean/fleetcrown/.github/workflows/selfhost-deploy.yml (docs: +# one 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. # @@ -16,7 +16,7 @@ on: jobs: deploy: - uses: catomean/fleetcrown/.github/workflows/selfhost-deploy.yml@main + uses: bitbaum/fleetcrown/.github/workflows/selfhost-deploy.yml@main with: app: botsmann secrets: inherit