From 3f982009e2b1803956ed02e48f3d5b6f793500b5 Mon Sep 17 00:00:00 2001 From: didericis Date: Sat, 6 Jun 2026 00:17:06 -0400 Subject: [PATCH] fix(ci): fix YAML parse error in update-badges workflow Zero-indented lines in the commit message body broke the block scalar, preventing Gitea from parsing the file at all. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/update-badges.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/update-badges.yml b/.gitea/workflows/update-badges.yml index e65594e..8f380af 100644 --- a/.gitea/workflows/update-badges.yml +++ b/.gitea/workflows/update-badges.yml @@ -87,11 +87,7 @@ jobs: else echo "Badge changes detected, committing..." git add README.md - git commit -m "chore: update quality badges - -- Pylint: ${{ steps.pylint.outputs.score }} -- Pyright: ${{ steps.pyright.outputs.errors }} errors - -[skip ci]" + MSG="chore: update quality badges"$'\n\n'"- Pylint: ${{ steps.pylint.outputs.score }}"$'\n'"- Pyright: ${{ steps.pyright.outputs.errors }} errors"$'\n\n'"[skip ci]" + git commit -m "$MSG" git push fi