From c037d7577b8465d2695becfdf907bc12f4b59203 Mon Sep 17 00:00:00 2001 From: Kamil Braun Date: Mon, 9 Dec 2024 11:38:08 +0100 Subject: [PATCH] author --- git_push_new_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_push_new_version.py b/git_push_new_version.py index c814b3f7a957..13ad0536465a 100755 --- a/git_push_new_version.py +++ b/git_push_new_version.py @@ -178,7 +178,7 @@ def main() -> None: run_git_command(["push", "-u", remote, new_branch]) - new_pr = create_pr(repo, base_branch, new_branch, new_title, new_description, token) + new_pr = create_pr(repo, base_branch, f"{author}:{new_branch}", new_title, new_description, token) logging.info(f"New PR created: {new_pr['html_url']}. Closing old PR...") close_pr(repo, old_pr_number, token)