fix(ci): restore valid YAML in ci.yml after JSON-escape corruption - #1254
Merged
Merged
Conversation
…runner Root cause: commits 12c52d4 and 5831b4e stored ci.yml with JSON-escaped content (literal \n sequences, leading double-quote) instead of proper YAML with actual newlines. All CI runs failed with "workflow file issue" before any job could start. Fix: restore from pre-corruption base (ca46364), apply intended changes: - concurrency.cancel-in-progress: true → false (queue rather than cancel) - changes job: runs-on ubuntu-latest (frees mac mini for real work) PR #1242 intent preserved, corruption from API commit removed.
This was referenced Apr 21, 2026
molecule-ai Bot
added a commit
that referenced
this pull request
Apr 21, 2026
fix(ci): restore valid YAML in ci.yml after JSON-escape corruption
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.
Problem
CI on staging has been completely broken since PR #1242 merged. Every CI run
fails immediately with "This run likely failed because of a workflow file issue."
The
ci.ymlfile was stored in Git with JSON-escaped content (literal\ntwo-character sequences, leading double-quote) instead of proper YAML with
actual newline bytes. GitHub Actions cannot parse this.
Fix
Restore from pre-corruption base (ca46364), apply PR #1242's intended changes:
concurrency.cancel-in-progress:true→false(queues rather than cancels)changesjob:runs-on: ubuntu-latest(frees mac mini for real CI work)Test plan
🤖 Generated with Claude Code