From a0d3028904eb7530fd436da4f363b15991c31422 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Wed, 20 May 2026 09:19:24 -0300 Subject: [PATCH] bugfix: arreglo split de branch para armar correctamente el titulo del PR --- src/git_flow/command/merge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]