From 2bf8dbce89c3efc6c803681bcfb6790e5aa9c341 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 13:59:03 -0300 Subject: [PATCH] docs: agrego link a respuesta de PR creado --- git-flow | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-flow b/git-flow index 2176e10..c556954 100755 --- a/git-flow +++ b/git-flow @@ -554,8 +554,8 @@ def create_pull_request(service: str, repository: str, source: str, destination: request = requests.post(endpoint, headers=headers, json=json) if request.ok: - print_success("PR creado exitosamente.") - print_debug("Response body: " + request.text) + json = request.json() + print_success("PR creado exitosamente: " + json['links']['html']['href']) else: print_error("Ocurrió un error al crear el PR: " + request.text)