fix(ci): Set exclude_start to False for YAML dumping of annotations

This commit is contained in:
Skyler Mäntysaari 2025-03-29 11:44:36 +02:00
parent b975736f5a
commit 3c8da7e8ca

View File

@ -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()