From 1f5c98588105f2c300cae4ab4fc10b3856790ab2 Mon Sep 17 00:00:00 2001 From: G <41178744+catomean@users.noreply.github.com> Date: Fri, 28 Aug 2026 10:31:51 +0200 Subject: [PATCH] chore: retire the maonakamoto handle GH_OWNER defaulted to an owner that no longer exists (gh api users/maonakamoto => 404), so this audit enumerated nothing and would have reported an empty fleet as a clean one. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UvjGNAS9CMfEGNW26tUR4P --- scripts/ci/find-false-needs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 scripts/ci/find-false-needs.py diff --git a/scripts/ci/find-false-needs.py b/scripts/ci/find-false-needs.py old mode 100755 new mode 100644 index 8b0a15c..e054da7 --- a/scripts/ci/find-false-needs.py +++ b/scripts/ci/find-false-needs.py @@ -72,7 +72,7 @@ scripts/ci/find-false-needs.py --strict # exit 1 if anything is found Env: - GH_OWNER GitHub owner to enumerate (default: maonakamoto) + GH_OWNER GitHub owner to enumerate (default: bitbaum) GH_LIMIT max repos to inspect (default: 100) """ import json @@ -87,7 +87,7 @@ except ImportError: sys.exit("needs PyYAML: pip install --user pyyaml") -OWNER = os.environ.get("GH_OWNER", "maonakamoto") +OWNER = os.environ.get("GH_OWNER", "bitbaum") LIMIT = os.environ.get("GH_LIMIT", "100")