Fix create PR in release workflow (#3528)
(cherry picked from commit 8b215eac41)
This commit is contained in:
committed by
github-actions[bot]
parent
57627e562f
commit
69d2f4b607
@@ -675,7 +675,8 @@ def integrations_pr(ctx: click.Context, local_repo: str, token: str, draft: bool
|
||||
None
|
||||
""") # noqa: E501
|
||||
|
||||
pr = repo.create_pull(message, body, base_branch, branch_name, maintainer_can_modify=True, draft=draft)
|
||||
pr = repo.create_pull(title=message, body=body, base=base_branch, head=branch_name,
|
||||
maintainer_can_modify=True, draft=draft)
|
||||
|
||||
# labels could also be comma separated
|
||||
label = {lbl for cs_labels in label for lbl in cs_labels.split(",") if lbl}
|
||||
|
||||
Reference in New Issue
Block a user