From 236a63860c2f2f3d2796dcdea2d094dc4e9f7c96 Mon Sep 17 00:00:00 2001 From: Constrat <56174894+Constrat@users.noreply.github.com> Date: Fri, 3 Jan 2025 23:54:24 +0100 Subject: [PATCH] chore: Use %B to consider header for skip changelog --- tools/ChangelogGenerator/changelog_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ChangelogGenerator/changelog_generator.py b/tools/ChangelogGenerator/changelog_generator.py index e5e955cb99..fdb7f326ce 100644 --- a/tools/ChangelogGenerator/changelog_generator.py +++ b/tools/ChangelogGenerator/changelog_generator.py @@ -336,7 +336,7 @@ def main(tag_name=None, latest=None): if commit_hash not in raw_commits_info: continue git_show_command = ( - rf'git show -s --format=%b%n {commit_hash}' + rf'git show -s --format=%B%n {commit_hash}' ) raw_git_shows = call_command(git_show_command) for commit_body in raw_git_shows.split("\n"):