-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Problem
The orchestrator requires a Copilot review before dispatching the quality gate (PR #202). But the orchestrator's workflow_run triggers only monitor: Review Responder, CI Fixer, CI, Quality Gate. It does NOT trigger when Copilot code review completes.
This means after Copilot finishes reviewing, the orchestrator won't fire until the next cron cycle (unreliable) or manual kick.
Fix
Add "Copilot code review" to the workflow_run.workflows list:
workflow_run:
workflows: ["Review Responder", "CI Fixer", "CI", "Quality Gate", "Copilot code review"]
types: [completed]This will trigger on all Copilot reviews (not just aw PRs), but the orchestrator exits quickly when no aw PRs need attention. Public repo has unlimited Actions minutes.
Related
- bug: quality gate dispatched before Copilot review completes #178 — quality gate must wait for Copilot review
- fix: quality gate waits for Copilot review and checks actual approval state #202 — implemented the Copilot review check
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request