bugfix: arreglo split de branch para armar correctamente el titulo del PR

This commit is contained in:
Jonathan Teran Carballo
2026-05-20 09:19:24 -03:00
parent 59b9e1c419
commit a0d3028904
+1 -1
View File
@@ -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("-") # <type>/<desc> or release/<env>/<type>/<desc>
components = branch.split("/") # <type>/<desc> or release/<env>/<type>/<desc>
branch_type = components[-2]
branch_desc = components[-1]