Merged in bugfix/changelog-username-links (pull request #23)

bugfix: changelog username links

Approved-by: Jonathan Teran
This commit is contained in:
JonathanGitFlow
2025-11-08 00:20:51 +00:00
committed by jt
+1 -1
View File
@@ -575,7 +575,7 @@ def get_changelog_content_lines(branch: str, target: str):
commit_type = message[:index] commit_type = message[:index]
commit_message = message[index+1:] 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 return lines