From 10fb128bac4c479385f54635bedbd5c65e41dd0c Mon Sep 17 00:00:00 2001 From: "d.o." <6849456+d-oit@users.noreply.github.com> Date: Tue, 28 Oct 2025 09:16:18 +0000 Subject: [PATCH] fix: Fix YAML syntax errors in GitHub Actions workflows --- .github/workflows/reusable/_quality-checks.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable/_quality-checks.yml b/.github/workflows/reusable/_quality-checks.yml index eb88e43..a829758 100644 --- a/.github/workflows/reusable/_quality-checks.yml +++ b/.github/workflows/reusable/_quality-checks.yml @@ -61,9 +61,12 @@ jobs: if ! git diff --quiet; then git add . - git commit -m "auto-fix: apply code quality fixes + cat < commit_msg.txt +auto-fix: apply code quality fixes - Applied cargo fmt formatting -- Applied clippy suggestions" +- Applied clippy suggestions +EOF + git commit -F commit_msg.txt git push fi \ No newline at end of file