fix(triage): drop apostrophe from MODE text that broke bash quoting#3325
Merged
fix(triage): drop apostrophe from MODE text that broke bash quoting#3325
Conversation
…uote
The PR-feedback MODE directive read "...PR's head branch..." which inside
a single-quoted bash block (the jq filter wrapping) closed the quote at
the apostrophe and made bash interpret the rest as code. Workflow run
24968657038 failed with `syntax error near unexpected token '('` on the
parenthetical that followed.
Rephrase to "the PR head branch — do not open a new PR" so the entire
jq filter stays inside the bash single-quote.
Caught the same morning we shipped the original change. Local repro
confirmed before/after.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced Apr 26, 2026
Merged
Merged
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.
PR #3316 introduced a MODE directive containing
PR's head branch. Inside the jq filter (which is wrapped in single quotes for bash), the apostrophe closed the bash string and turned the parenthetical(do not open a new PR)into a subshell, producingsyntax error near unexpected token '('on workflow run 24968657038.Rephrase to remove the apostrophe. Local repro confirms the payload now generates cleanly.
Same fix needs porting to adcp-client / adcp-client-python / adcp-go.
🤖 Generated with Claude Code