Merge "Do not update upper constraints for intermediate branches"

This commit is contained in:
Zuul 2020-08-25 12:58:55 +00:00 committed by Gerrit Code Review
commit 25dacf963d
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ git push gerrit $NEW_BRANCH
update_gitreview "$NEW_BRANCH" update_gitreview "$NEW_BRANCH"
# Do not update upper constraints on driverfixes branches # Do not update upper constraints on driverfixes or intermediate branches
if [[ ! $NEW_BRANCH =~ driverfixes/ ]]; then if [[ ! $NEW_BRANCH =~ driverfixes/|bugfix/ ]]; then
update_upper_constraints "$NEW_BRANCH" update_upper_constraints "$NEW_BRANCH"
fi fi