From e9766368ac873957afb5310efa3424d141c25805 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Tue, 25 Aug 2026 11:02:39 +0100 Subject: [PATCH] fix(ci): dispatch to .git-private-farm, not the nonexistent dot-git-private-farm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit inbox-steward-intake.yml POSTed to /repos/hyperpolymath/dot-git-private-farm/dispatches, which 404s — the repo is named .git-private-farm. Hidden by the same two mechanisms as the companion defect in gitbot-fleet: the call is wrapped in `>/dev/null 2>&1` with an `::warning::` fallback, and the surrounding echo already printed the correct ".git-private-farm", so the run log never showed the real target. Second hop of the closed loop (gitbot-fleet/inbox-steward -> hypatia/inbox-steward-intake -> farm/inbox-steward-propagate). See gitbot-fleet#490. Co-Authored-By: Claude Opus 5 --- .github/workflows/inbox-steward-intake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/inbox-steward-intake.yml b/.github/workflows/inbox-steward-intake.yml index 4795d361..3b04cbe5 100644 --- a/.github/workflows/inbox-steward-intake.yml +++ b/.github/workflows/inbox-steward-intake.yml @@ -333,9 +333,9 @@ jobs: echo "Dispatching to .git-private-farm: $(echo "$PAYLOAD" | jq -c '.')" - # Send to dot-git-private-farm + # Send to .git-private-farm if gh api -X POST \ - "/repos/hyperpolymath/dot-git-private-farm/dispatches" \ + "/repos/hyperpolymath/.git-private-farm/dispatches" \ --input - <<<"$PAYLOAD" >/dev/null 2>&1; then echo "✅ Successfully dispatched to .git-private-farm" else