diff --git a/src/git_flow/command/merge.py b/src/git_flow/command/merge.py index feb7156..98af465 100644 --- a/src/git_flow/command/merge.py +++ b/src/git_flow/command/merge.py @@ -104,7 +104,7 @@ def create_pull_request(token: str, branch: str, target: str): Git("pull").exec(print="Obteniendo cambios") def _get_pr_title_from_branch(branch: str) -> str: - components = branch.split("-") # / or release/// + components = branch.split("/") # / or release/// branch_type = components[-2] branch_desc = components[-1]