From 3c8da7e8ca85d663fcf2c860754a248dbdb2dcb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Skyler=20M=C3=A4ntysaari?= Date: Sat, 29 Mar 2025 11:44:36 +0200 Subject: [PATCH] fix(ci): Set exclude_start to False for YAML dumping of annotations --- .github/scripts/renovate-releasenotes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/renovate-releasenotes.py b/.github/scripts/renovate-releasenotes.py index 4dbf817..f9544a6 100755 --- a/.github/scripts/renovate-releasenotes.py +++ b/.github/scripts/renovate-releasenotes.py @@ -191,6 +191,7 @@ def main( if annotations: annotations_stream = io.StringIO() + yaml.exclude_start = False yaml.dump_all([annotations], annotations_stream) annotations_string = annotations_stream.getvalue().strip()