diff mbox series

[auh,3/4] upgrade-helper: increase changelog truncation to 5000 charaters

Message ID 20260918120342.772566-3-daniel.turull@ericsson.com
State New
Headers show
Series [auh,1/4] steps: deduplicate same version in subject | expand

Commit Message

Daniel Turull Sept. 18, 2026, 12:03 p.m. UTC
From: Daniel Turull <daniel.turull@ericsson.com>

Increase to include more text in the commit message.

It has been requested by Richard Purdie in
https://lore.kernel.org/all/e13a77790d4c9bb55bd61aa59ff433c703b6f3d8.camel@linuxfoundation.org/

Signed-off-by: Daniel Turull <daniel.turull@ericsson.com>
---
 upgrade-helper.conf | 2 +-
 upgrade-helper.py   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/upgrade-helper.conf b/upgrade-helper.conf
index 3cd990d..26db0c5 100644
--- a/upgrade-helper.conf
+++ b/upgrade-helper.conf
@@ -144,4 +144,4 @@ 
 # Maximum number of characters from the changelog to include in the
 # commit message. Longer changelogs are truncated. The full changelog
 # is always available as an attachment.
-#changelog_max_len=3000
+#changelog_max_len=5000
diff --git a/upgrade-helper.py b/upgrade-helper.py
index c3b37e8..86e1a93 100755
--- a/upgrade-helper.py
+++ b/upgrade-helper.py
@@ -219,7 +219,7 @@  class Updater(object):
         self.opts['skip_compilation'] = self.args.skip_compilation
         self.opts['buildhistory'] = self._buildhistory_is_enabled()
         self.opts['testimage'] = self._testimage_is_enabled()
-        self.opts['changelog_max_len'] = settings.get('changelog_max_len', '3000')
+        self.opts['changelog_max_len'] = settings.get('changelog_max_len', '5000')
 
     def _make_dirs(self, build_dir):
         self.uh_dir = os.path.join(build_dir, "upgrade-helper")