Merge pull request #2 from davidism/disable-submit

submit is disabled by default
This commit is contained in:
David Lord 2025-01-14 12:32:02 -08:00 committed by GitHub
commit b0b6e11dcc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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: