feature: eliminar prompt de ticket en creacion de rama

This commit is contained in:
jt
2025-12-21 22:32:54 -03:00
parent 77e338dcc8
commit c0e2e596aa
-3
View File
@@ -44,9 +44,6 @@ class NewCommand(Command):
persistent=True,
)
ticket = self.prompt("[Opcional] Ingrese el ID del ticket (por ejemplo ABC-123 o #123)")
ticket = ticket[1:] if ticket.startswith("#") else ticket
keywords = ticket + ' ' + keywords
keywords = filter(lambda k: len(k) > 0, keywords.split(" "))
branch = branch_type + "/" + "-".join(keywords)