docs: agrego link a respuesta de PR creado

This commit is contained in:
jt
2025-11-02 13:59:03 -03:00
parent 90fc311794
commit 2bf8dbce89
+2 -2
View File
@@ -554,8 +554,8 @@ def create_pull_request(service: str, repository: str, source: str, destination:
request = requests.post(endpoint, headers=headers, json=json) request = requests.post(endpoint, headers=headers, json=json)
if request.ok: if request.ok:
print_success("PR creado exitosamente.") json = request.json()
print_debug("Response body: " + request.text) print_success("PR creado exitosamente: " + json['links']['html']['href'])
else: else:
print_error("Ocurrió un error al crear el PR: " + request.text) print_error("Ocurrió un error al crear el PR: " + request.text)