From 48d2422c0ffd0d335263967476b63c425cc4fe73 Mon Sep 17 00:00:00 2001 From: Jason Odoom Date: Tue, 9 Jun 2026 04:52:08 +0000 Subject: [PATCH] fix(ci): repair flake-sync commit message YAML The commit-message body in the Commit + push step sat at column 0, under-indented relative to its run: | block, so YAML ended the block early and parsed the body as mapping keys. The workflow has been invalid since it was added, failing validation on every trigger. Indent the body lines into the block (the literal scalar strips the block indent, so the message still renders at column 0) and replace the non-ASCII arrows with ->. --- .github/workflows/flake-sync.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flake-sync.yml b/.github/workflows/flake-sync.yml index 377eb6c..4e0e7d9 100644 --- a/.github/workflows/flake-sync.yml +++ b/.github/workflows/flake-sync.yml @@ -114,7 +114,7 @@ jobs: git add flake.nix git commit -m "chore(flake): sync version + npmDepsHash [skip-flake-sync] -Auto-generated by .github/workflows/flake-sync.yml. -- version: ${{ steps.current.outputs.cur_version }} → ${{ steps.compute.outputs.pkg_version }} -- npmDepsHash: ${{ steps.current.outputs.cur_hash }} → ${{ steps.compute.outputs.new_hash }}" + Auto-generated by .github/workflows/flake-sync.yml. + - version: ${{ steps.current.outputs.cur_version }} -> ${{ steps.compute.outputs.pkg_version }} + - npmDepsHash: ${{ steps.current.outputs.cur_hash }} -> ${{ steps.compute.outputs.new_hash }}" git push origin main