submit is disabled by default

This commit is contained in:
David Lord 2025-01-14 12:30:39 -08:00
parent 78bbd954d9
commit d968a7e815
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,8 @@
Unreleased
- Submit is disabled by default.
## Version 0.1.0
Released 2025-01-14

View file

@ -17,7 +17,7 @@ class GitHubScript(Script[GitHubRepo]):
orgs: list[str]
"""The list of GitHub users/orgs to clone repositories from."""
def __init__(self, *, submit: bool = True, orgs: list[str] | None = None) -> None:
def __init__(self, *, submit: bool = False, orgs: list[str] | None = None) -> None:
super().__init__(submit=submit)
if orgs is not None: