bugfix: arreglo parametro target a get_changelog_entry_lines

This commit is contained in:
jt
2025-11-07 21:06:56 -03:00
parent 6d390376d8
commit 3e01b11c09
+1 -1
View File
@@ -598,7 +598,7 @@ def generate_changelog_entry(branch: str, target: str):
def create_pull_request(service: str, repository: str, source: str, destination: str): def create_pull_request(service: str, repository: str, source: str, destination: str):
endpoint = get_api_endpoint(service, repository, "/pullrequests") endpoint = get_api_endpoint(service, repository, "/pullrequests")
title = source.replace("/", ": ").replace("-", " ") title = source.replace("/", ": ").replace("-", " ")
description = "\n".join(get_changelog_content_lines(destination)) description = "\n".join(get_changelog_content_lines(source, destination))
headers = get_headers() headers = get_headers()
json = { json = {