upload: Add ready flag to remove wip

The `--wip` allow to bulk push changed as work-in-progress. This CL
intend to allow the opposite opperation by removing the wip mark on the
CL and set it to be ready to review

Change-Id: If0743c5b14829f77be2def5a8547060d06a5648c
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/342214
Reviewed-by: Mike Frysinger <vapier@google.com>
Tested-by: William Escande <wescande@google.com>
This commit is contained in:
William Escande
2022-08-02 16:05:37 -07:00
parent a8c34d1075
commit ac76fd3e3a
2 changed files with 9 additions and 0 deletions

View File

@@ -205,6 +205,7 @@ class ReviewableBranch(object):
private=False,
notify=None,
wip=False,
ready=False,
dest_branch=None,
validate_certs=True,
push_options=None):
@@ -217,6 +218,7 @@ class ReviewableBranch(object):
private=private,
notify=notify,
wip=wip,
ready=ready,
dest_branch=dest_branch,
validate_certs=validate_certs,
push_options=push_options)
@@ -1003,6 +1005,7 @@ class Project(object):
private=False,
notify=None,
wip=False,
ready=False,
dest_branch=None,
validate_certs=True,
push_options=None):
@@ -1072,6 +1075,8 @@ class Project(object):
opts += ['private']
if wip:
opts += ['wip']
if ready:
opts += ['ready']
if opts:
ref_spec = ref_spec + '%' + ','.join(opts)
cmd.append(ref_spec)