bugfix: arreglo generacion de links en changelog entries

This commit is contained in:
jt
2025-11-07 21:20:22 -03:00
parent 49642cfb71
commit 9799df2147
+1 -1
View File
@@ -575,7 +575,7 @@ def get_changelog_content_lines(branch: str, target: str):
commit_type = message[:index]
commit_message = message[index+1:]
lines.append(f"- **{commit_type}**: {commit_message} por [{username}]({email}) ({commit})")
lines.append(f"- **{commit_type}**: {commit_message} [[{username}](mailto:{email})] ({commit})")
return lines