From 9017700927c2679bc80a16ea634ab97fbcd02191 Mon Sep 17 00:00:00 2001 From: Christoph Ostarek Date: Mon, 2 Sep 2024 12:59:09 +0200 Subject: [PATCH] update_kernel_commits.py: mke automated commit msg The commit message generated by this script should conform to our commit style - i.e. it should start with a capital letter. https://github.com/lf-edge/eve/blob/master/CONTRIBUTING.md#commit-messages Signed-off-by: Christoph Ostarek --- tools/update_kernel_commits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update_kernel_commits.py b/tools/update_kernel_commits.py index 0f23df2f9a..0319556bd8 100755 --- a/tools/update_kernel_commits.py +++ b/tools/update_kernel_commits.py @@ -217,7 +217,7 @@ def generate_commit_message(branches, repo_owner, repo_name, verbose=False): commit_message += "\n" arch_list = f"[{', '.join(get_short_arch_flavor(branch) for branch in branches)}]" - commit_subject = f"Kernel update - {arch_list}\n\n" + commit_subject = f"Kernel update - {arch_list}\n\nThis commit changes:\n" commit_message = commit_subject + commit_message return commit_message