fix: remove stray backtick breaking triage-delegation GraphQL mutation - #37
Closed
ryjones wants to merge 1 commit into
Closed
fix: remove stray backtick breaking triage-delegation GraphQL mutation#37ryjones wants to merge 1 commit into
ryjones wants to merge 1 commit into
Conversation
The updateItemStatus mutation string had a stray backtick right after the opening brace, which closed the template literal early and produced a SyntaxError at module load, failing the Triage Delegation workflow. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Ry Jones <ry@linux.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes a JavaScript syntax error that prevented scripts/triage-delegation.js from loading, by correcting the GraphQL updateItemStatus mutation template literal so the Triage Delegation workflow can execute.
Changes:
- Removed the stray backtick that prematurely closed the
mutation(...) { ... }template literal inupdateItemStatus. - Restored the intended GraphQL mutation string structure so
graphql()receives a valid query.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ryjones
enabled auto-merge (rebase)
July 2, 2026 12:55
Contributor
|
thanks but i've moved this to a new operations repo - governance has different pr approval requirements, for good reason. |
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.
The updateItemStatus mutation string had a stray backtick right after the opening brace, which closed the template literal early and produced a SyntaxError at module load, failing the Triage Delegation workflow.