From d41df169d6b71afe0294f28e1bf7af735f040011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Skyler=20M=C3=A4ntysaari?= Date: Sat, 29 Mar 2025 10:58:13 +0200 Subject: [PATCH] fix(ci): Enable explicit start in YAML configuration for release notes --- .github/scripts/renovate-releasenotes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/renovate-releasenotes.py b/.github/scripts/renovate-releasenotes.py index a78ef51..3102a18 100755 --- a/.github/scripts/renovate-releasenotes.py +++ b/.github/scripts/renovate-releasenotes.py @@ -112,7 +112,7 @@ def main( yaml = YAML(typ=['rt', 'string']) yaml.indent(mapping=2, sequence=4, offset=2) - yaml.explicit_start = False + yaml.explicit_start = True yaml.preserve_quotes = True yaml.width = 4096 @@ -191,6 +191,7 @@ def main( if annotations: annotations_stream = io.StringIO() + yaml.explicit_start = False yaml.dump(annotations, annotations_stream) annotations_string = annotations_stream.getvalue()