Skip to content

Commit

Permalink
[Bug] Add missing local branches
Browse files Browse the repository at this point in the history
Signed-off-by: Junya Sasaki <[email protected]>
  • Loading branch information
sasakisasaki committed Aug 27, 2024
1 parent 7815625 commit 9746815
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions create_version_update_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ def create_version_update_pr(args: argparse.Namespace) -> None:
if branch_name not in branches:
branches.append(branch_name)

# Local branches
for branch in repo.branches:
branches.append(branch.name)

for url, current_version in repository_url_semantic_version_dict.items():
'''
Description:
Expand Down

0 comments on commit 9746815

Please sign in to comment.