remove second --draft option

This commit is contained in:
Erica Portnoy 2026-06-23 10:15:02 -07:00
parent 3998d517d1
commit 295ecb60d0

View file

@ -249,8 +249,7 @@ def _create_release_pr_to_minor_branch(
title = f'update files from {version} release'
body = 'this PR only needs 1 review and should be merged, not squashed'
pr_opts = [ '--head', branch_name,
'--base', point_x_branch_name,
'--draft'] # remove draft
'--base', point_x_branch_name]
result = _create_pr(title, body, 'PR to merge release changes into .x branch', create_pr_opts)
print(f'PR location: {result}')