do not prompt before submitting multiple reviews

Sometimes when we update a branch, we need to submit more than one
stacked review. Allow that without prompting.

Change-Id: I59696ea5124c07c32f98b369adea164a689d63b0
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2016-09-15 08:35:05 -04:00
parent f8d0b5c69f
commit e3e90e561b
2 changed files with 3 additions and 3 deletions

View File

@ -57,4 +57,4 @@ git add releasenotes/source/index.rst releasenotes/source/${SERIES}.rst
git diff git diff
git commit -m "$commit_msg" git commit -m "$commit_msg"
git show git show
git review -t "reno-${SERIES}" git review -t "reno-${SERIES}" --yes

View File

@ -74,7 +74,7 @@ defaultbranch=$branch"
git commit -m "Update .gitreview for $branch" git commit -m "Update .gitreview for $branch"
git show git show
local shortbranch=$(basename $branch) local shortbranch=$(basename $branch)
git review -t "create-${shortbranch}" git review -t "create-${shortbranch}" --yes
} }
@ -92,7 +92,7 @@ function update_upper_constraints {
git commit -m "Update UPPER_CONSTRAINTS_FILE for $branch" git commit -m "Update UPPER_CONSTRAINTS_FILE for $branch"
git show git show
local shortbranch=$(basename $branch) local shortbranch=$(basename $branch)
git review -t "create-${shortbranch}" git review -t "create-${shortbranch}" --yes
fi fi
} }