cmd
Commands for generating PRs.
BranchNameValidator
Bases: Validator
Validation class for branch names.
Source code in dapla_team_cli/pr/open/cmd.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
|
validate(document)
Validation cheks for branch name validator object.
Source code in dapla_team_cli/pr/open/cmd.py
19 20 21 22 23 24 25 26 27 28 29 30 |
|
open(override=typer.Option(False, '--override', '-o', help='Yields an option to open PRs that the state file records as having already been opened'), max_prs=typer.Option(sys.maxsize, '--max', '-m', help='Max PRs to open in one run.'), input_target_branch_name=typer.Option(None, '--target-branch-name', '-b', help='Name of the branches in the opened pull requests'), commit_message=typer.Option(None, '--commit-messsage', '-c', help='Name of the commit message in the opened pull requests'))
Opens a pull request for all folders in a given parent folder.
Source code in dapla_team_cli/pr/open/cmd.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|