fix: add missing closing double-quote in daily-triage.sh - #39
Merged
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
The line '"' >> "$REPORT' was missing its closing double-quote, causing the Agent Harness scheduled workflow to fail with a bash syntax error (exit code 2) on every scheduled run since the bug was introduced. Fixes #38
shira022
force-pushed
the
fix/unclosed-quote-daily-triage
branch
from
July 28, 2026 00:24
e0a3b36 to
251d2e3
Compare
Owner
Author
|
🔄 Updated branch: Rebased onto latest ⏳ Waiting for review: This PR fixes the daily CI failure (Agent Harness) that has been failing since July 23. All previous CI checks passed. Branch protection requires an approving review from someone with write access before merging. cc @shira022 — please review and approve when possible. |
shira022
added a commit
that referenced
this pull request
Aug 3, 2026
The line '"' >> "$REPORT' was missing its closing double-quote, causing the Agent Harness scheduled workflow to fail with a bash syntax error (exit code 2) on every scheduled run since the bug was introduced. Fixes #38 Co-authored-by: shira022 <shira@users.noreply.github.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.
Description
Fixes a bash syntax error in
scripts/daily-triage.shthat has been causing the scheduled Agent Harness workflow to fail daily.Root Cause
Line 67 of
scripts/daily-triage.sh:It was missing the closing double-quote — should be:
Impact
STATE.mdwas never updatedFix
Added the missing
"at the end of the line.Fixes #38