Skip to content

Commit fd31821

Browse files
authored
Merge pull request #39 from d-oit/workflow-yaml-fixes
Fix YAML syntax errors in GitHub Actions workflows
2 parents a4876bf + 10fb128 commit fd31821

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/reusable/_quality-checks.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,12 @@ jobs:
6161
6262
if ! git diff --quiet; then
6363
git add .
64-
git commit -m "auto-fix: apply code quality fixes
64+
cat <<EOF > commit_msg.txt
65+
auto-fix: apply code quality fixes
6566

6667
- Applied cargo fmt formatting
67-
- Applied clippy suggestions"
68+
- Applied clippy suggestions
69+
EOF
70+
git commit -F commit_msg.txt
6871
git push
6972
fi

0 commit comments

Comments
 (0)