Skip to content

cmd

Commands for writing 'atlantis plan' on PRs.

plan(max_prs=typer.Argument(sys.maxsize, help='Max PRs to open in one run.'))

Writes 'atlantis plan' on all PRs.

Source code in dapla_team_cli/pr/atlantis_plan/cmd.py
10
11
12
13
14
15
def plan(max_prs: int = typer.Argument(sys.maxsize, help="Max PRs to open in one run.")) -> None:
    """Writes 'atlantis plan' on all PRs."""
    if state := state_object_handler.get_user_state():
        atlantis_plan(state, max_prs)
    else:
        sys.exit(1)