Skip to content

Commit

Permalink
Merge pull request #79 from PolicyEngine/fix/change_branch_name
Browse files Browse the repository at this point in the history
Fix reference to main branch in bump_country_package
  • Loading branch information
anth-volk authored May 22, 2024
2 parents dd9cbef + 62bddcc commit 9a232d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
changed:
- Fixed main branch reference in bump_country_package
2 changes: 1 addition & 1 deletion gcp/bump_country_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def bump_country_package(country, version):
os.system(f"git push -u origin {branch_name} -f")
# Create a pull request using the GitHub CLI
os.system(
f"gh pr create --title 'Update {country_package_full_name} to {version}' --body 'Update {country_package_full_name} to {version}' --base master --head {branch_name}"
f"gh pr create --title 'Update {country_package_full_name} to {version}' --body 'Update {country_package_full_name} to {version}' --base main --head {branch_name}"
)


Expand Down

0 comments on commit 9a232d8

Please sign in to comment.