From 8b5e0c79de591a27f8971bbeac097a9e70ee1081 Mon Sep 17 00:00:00 2001 From: Shay Date: Fri, 12 Jun 2026 17:20:43 -0700 Subject: [PATCH] ci: fix invalid YAML in ratify-proposal workflow (unloadable since #283) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The multi-line git commit -m message had body lines at column 1, which terminated the run: | literal block — GitHub could not load the workflow file, producing a path-named failure run on EVERY push to every branch since the file landed. Rewritten as paragraph-style -m flags; triggers unchanged (workflow_dispatch only, CONTEMPLATION_ENABLED gate intact). --- .github/workflows/ratify-proposal.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ratify-proposal.yml b/.github/workflows/ratify-proposal.yml index a6dcd25d..d8c2a2a1 100644 --- a/.github/workflows/ratify-proposal.yml +++ b/.github/workflows/ratify-proposal.yml @@ -107,12 +107,16 @@ jobs: git add \ teaching/cognition_chains/cognition_chains_v1.jsonl \ teaching/proposals/proposals.jsonl - git commit -m "ratify(teaching): accept proposal ${{ inputs.proposal_id }} - -chain_id: ${{ steps.accept.outputs.chain_id }} -review_date: ${{ steps.date.outputs.date }} -operator: ${{ github.actor }} -ADR-0057 / ADR-0155" + # Paragraph-style -m flags: a multi-line -m string here had body + # lines at column 1, which terminated the YAML literal block and + # made the workflow file unloadable (a path-named failure run on + # every push since #283). + git commit \ + -m "ratify(teaching): accept proposal ${{ inputs.proposal_id }}" \ + -m "chain_id: ${{ steps.accept.outputs.chain_id }}" \ + -m "review_date: ${{ steps.date.outputs.date }}" \ + -m "operator: ${{ github.actor }}" \ + -m "ADR-0057 / ADR-0155" git push origin main - name: job summary