Fix unterminated string literal in resolution_label_notifier workflow - #5168
Skynettheone wants to merge 1 commit into
Conversation
The 'Resolution/Done condition was missing its closing quote, making the if: expression invalid. Every run of this workflow since at least 2025-07-30 has ended in startup_failure as a result, so it has never actually been able to comment on or reopen an issue closed without a proper Resolution/ label. Add the missing closing quote.
|
Warning Review limit reached
Next review available in: 43 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
The
if:condition in.github/workflows/resolution_label_notifier.ymlhas an unterminated string literal:contains(github.event.issue.labels.*.name, 'Resolution/Done)The closing quote after
Resolution/Doneis missing, making the expression invalid.Impact
Every run of this workflow since at least 2025-07-30 has ended in
startup_failure:GitHub's own diagnostic for these runs is "This run likely failed because of a workflow file issue." As a result, the workflow has never been able to comment on or reopen an issue that was closed without a proper
Resolution/*label, silently defeating its entire purpose.Change
Added the missing closing quote:
'Resolution/Done'.Test plan
yaml.safe_load) to confirm it's valid YAML.if:expression is now balanced (was odd before the fix, even after).