From a14d52886d11cf2c4136a7ae692b6d820516ffe9 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Wed, 15 Apr 2026 14:43:57 -0400 Subject: [PATCH] fix(contributors): correct YAML indentation in multiline strings Lines inside run: | block must maintain the block's indentation level for valid YAML parsing. --- .github/workflows/contributors.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml index f4d43ce..7681e35 100644 --- a/.github/workflows/contributors.yml +++ b/.github/workflows/contributors.yml @@ -85,12 +85,12 @@ jobs: # Build the contributors section if [[ "$OUTPUT_FORMAT" == "html" ]]; then contrib_section=" -$contributor_output
-" + $contributor_output
+ " else contrib_section=" -$contributor_output -" + $contributor_output + " fi # Update README between the markers