fix(overwatch): Exit 0 when no updated loop on comment#699
Open
xavierhamel wants to merge 3 commits into
Open
Conversation
xavierhamel
commented
Jul 24, 2026
Contributor
- feat(overwatch): Add loop orchestrator
- bump version
- fix(overwatch): Exit 0 when no updated loop on coment
Davidferl
approved these changes
Jul 24, 2026
Greptile SummaryAdds a multi-loop orchestrator and label-based ownership guard for routing PR review comments.
Confidence Score: 3/5The PR should not merge until ambiguous multi-label PRs are prevented from being processed by whichever loop happens to be registered first. Routing starts loop-specific mutation as soon as one registered label matches, even though labels can accumulate and another registered loop may also match; the resulting registration-order choice can run the wrong actuator and update the wrong memory. overwatch/src/orchestrator.ts, overwatch/src/control-loop.ts, overwatch/README.md Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
E[apply-comments PR number] --> O[LoopOrchestrator]
O --> L1[Probe registered loop]
L1 --> G{PR contains loop label?}
G -- No --> N[Probe next loop]
N --> L1
G -- Yes --> A[Apply comments with that loop's configuration]
A --> M[Update memory and push branch]
N -->|No loops match| Z[Exit successfully without changes]
Reviews (1): Last reviewed commit: "fix(overwatch): Exit 0 when no updated l..." | Re-trigger Greptile |
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.