fix(workflows): use continue instead of break in close-labeler loop#41986
fix(workflows): use continue instead of break in close-labeler loop#41986moosairfaan wants to merge 2 commits into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughThe close-labeler workflow now skips non-matching issue references and continues evaluating subsequent nodes, allowing all eligible issues to receive the QA label. ChangesClose labeler behavior
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related issues
Suggested reviewers: Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
Fixes #41983
The close-labeler loop used break instead of continue, so any qualifying (Bug/Enhancement) issue that came after a non-qualifying one in a PR's closing issues list never got the QA label. Changed break to continue so the loop skips non-qualifying issues instead of aborting.
Summary by CodeRabbit