Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-04-27 18:48:30 -07:00
parent d8b4b94585
commit f05f1699c4
1 changed files with 0 additions and 9 deletions

View File

@ -34,15 +34,6 @@ def create_initial_branch(repository, args):
release_branch = repository.create_release_branch(args.release, args.base)
if args.base and args.cherries:
print('Detected patch version.')
auto_prs = repository.get_prs_in_milestone(args.release)
if auto_prs:
print(
'Found the following PRs in this release\'s milestone: {}'.format(', '.join(auto_prs))
)
proceed = yesno('Automatically cherry-pick detected PRs? Y/n', default=True)
if proceed:
repository.cherry_pick_prs(release_branch, auto_prs)
cherries = input('Indicate (space-separated) PR numbers to cherry-pick then press Enter:\n')
repository.cherry_pick_prs(release_branch, cherries.split())