From 561aa5e4439d47c87beca59f9c00453d18a5bda6 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 16 Oct 2025 10:05:37 +0200 Subject: [PATCH] chore(gallery agent): try fixing linting errors Signed-off-by: Ettore Di Giacinto --- .github/gallery-agent/gallery.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/gallery-agent/gallery.go b/.github/gallery-agent/gallery.go index 8788fbf91..de75e73bc 100644 --- a/.github/gallery-agent/gallery.go +++ b/.github/gallery-agent/gallery.go @@ -51,8 +51,9 @@ func generateYAMLEntry(model ProcessedModel, familyAnchor string) string { // Empty line - don't add spaces formattedLines = append(formattedLines, "") } else { - // Non-empty line - add proper indentation - formattedLines = append(formattedLines, " "+line) + // Non-empty line - add proper indentation for literal block scalar + // The content should be indented 2 spaces from the description: key + formattedLines = append(formattedLines, " "+line) } } formattedDescription := strings.Join(formattedLines, "\n")