Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/ci/find-false-needs.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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")


Expand Down