Skip to content

Commit

Permalink
Fix push owner (#26)
Browse files Browse the repository at this point in the history
* Add configurable prompts

* Fix push owner
  • Loading branch information
neubig authored Aug 29, 2024
1 parent e12cc64 commit 992aa4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_resolver/send_pull_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def send_pull_request(
# If we are not sending a PR, we can finish early and return the
# URL for the user to open a PR manually
if pr_type == "branch":
url = f"https://github.com/{github_issue.owner}/{github_issue.repo}/compare/{branch_name}?expand=1"
url = f"https://github.com/{push_owner}/{github_issue.repo}/compare/{branch_name}?expand=1"
else:
data = {
"title": pr_title,
Expand Down

0 comments on commit 992aa4b

Please sign in to comment.