fix: release notes block was invalid YAML + workflow-lint gate - #88
Merged
Conversation
The v0.2.0 run failed with zero jobs: --notes' multi-line string put continuation lines at column 0 inside a run:| literal block, which terminates the scalar and breaks the document. Notes now build line-by-line (indented) into a notes-file. Gate added so the class is caught at commit time, not tag time: scripts/check-workflow-yaml.sh (parse every workflow; lefthook + CI, one script both callers) plus actionlint in CI's new workflow-lint job, wired into ci-gate. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJ8wStsHyu7XPLTspNjMnQ
alicoding
enabled auto-merge (squash)
August 13, 2026 21:19
…PL-3 dependency-review deny-licenses flagged arduino/setup-task (the action is GPL-3.0; Task itself is MIT) once this PR touched release.yml's uses: lines. go install of the MIT tool, version-pinned, drops both the license hit and a third-party action. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJ8wStsHyu7XPLTspNjMnQ
alicoding
added a commit
that referenced
this pull request
Aug 15, 2026
* fix: release notes block was invalid YAML + workflow-lint gate The v0.2.0 run failed with zero jobs: --notes' multi-line string put continuation lines at column 0 inside a run:| literal block, which terminates the scalar and breaks the document. Notes now build line-by-line (indented) into a notes-file. Gate added so the class is caught at commit time, not tag time: scripts/check-workflow-yaml.sh (parse every workflow; lefthook + CI, one script both callers) plus actionlint in CI's new workflow-lint job, wired into ci-gate. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJ8wStsHyu7XPLTspNjMnQ * fix: install Task via go install — the setup-task action wrapper is GPL-3 dependency-review deny-licenses flagged arduino/setup-task (the action is GPL-3.0; Task itself is MIT) once this PR touched release.yml's uses: lines. go install of the MIT tool, version-pinned, drops both the license hit and a third-party action. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FJ8wStsHyu7XPLTspNjMnQ --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v0.2.0's first release run failed with zero jobs executed — GitHub couldn't parse release.yml: PR #86's multi-line
--notesstring had lines at column 0 inside arun: |block, which terminates the literal scalar. GitHub only parses a workflow when its trigger fires, so tag-only workflows can merge broken through green CI — hence the new gate:check-workflow-yaml.sh(parse-only, python3, lefthook + CI same script) + actionlint in a newworkflow-lintjob wired into the required CI gate. After merge: re-point v0.2.0 and re-fire.🤖 Generated with Claude Code
https://claude.ai/code/session_01FJ8wStsHyu7XPLTspNjMnQ