mirror of
https://github.com/davidism/modify-repos.git
synced 2025-07-07 19:35:34 +00:00
submit is disabled by default
This commit is contained in:
parent
78bbd954d9
commit
d968a7e815
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
Unreleased
|
||||
|
||||
- Submit is disabled by default.
|
||||
|
||||
## Version 0.1.0
|
||||
|
||||
Released 2025-01-14
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue