Skip to content

Commit

Permalink
Merge 8c8b0f1 into 62ad7b6
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Jun 20, 2024
2 parents 62ad7b6 + 8c8b0f1 commit 477c513
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ changelog:
labels:
- dependencies
- breaking_change
- add-new-address
- title: 🆕 New Chain Addresses
labels:
- add-new-address
- title: 🛠 Breaking Changes
labels:
- breaking_change
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,13 @@ def create_pr(
issue_number: int,
) -> None:
try:
repo.create_pull(
created_pull_request = repo.create_pull(
title=f"Add addresses {version} for chain {chain_enum_name}",
body=f"Automatic PR to add new address {version} to {chain_enum_name} chain\n Closes #{issue_number}",
head=branch_name,
base="main",
)
created_pull_request.add_to_labels("add-new-address")
except GithubException as e:
print(f"Unable to create pull request: {e}")

Expand Down

0 comments on commit 477c513

Please sign in to comment.