Skip to content

Commit

Permalink
Debug statements added
Browse files Browse the repository at this point in the history
  • Loading branch information
sshrihar committed Sep 24, 2024
1 parent b503aa6 commit 7bda57d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build_branches.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ def update_pr_description(pr_number:str):
new_pr_description = f"Hosted url: [{hosted_url}](https://{hosted_url})\n" + pr_description
print(f"Updated PR description: {new_pr_description}")
command = ["gh", "pr", "edit", pr_number, "--body", new_pr_description]
subprocess.run(command)
print(f"Executing command: {str(command)}")
execution_cmd = subprocess.run(command, capture_output=True, text=True).stdout.strip()
print(f"Command Result: {execution_cmd}")


def process_branch_folders():
Expand Down

0 comments on commit 7bda57d

Please sign in to comment.