fix: recognize copilot-pull-request-reviewer in ci-gate#5068
Conversation
The Copilot review bot uses the login 'copilot-pull-request-reviewer', which was not in the reviewer set. This caused the ci-gate to fail to add the ready-for-ci label after Copilot review. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Updates the CI gate workflow to correctly recognize reviews from the Copilot review bot account so the ready-for-ci label can be applied when appropriate.
Changes:
- Add
copilot-pull-request-reviewerto thecopilotReviewersallowlist in theci-gateworkflow.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/ci-gate.yml | Expands the recognized Copilot reviewer login set used to decide when to apply ready-for-ci. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 1
| with: | ||
| script: | | ||
| const copilotReviewers = new Set(['copilot', 'copilot[bot]', 'Copilot']); | ||
| const copilotReviewers = new Set(['copilot', 'copilot[bot]', 'Copilot', 'copilot-pull-request-reviewer']); |
|
@copilot address review feedback |
Addressed in commit |
✅ Coverage Check PassedOverall Coverage
📁 Per-file Coverage Changes (1 files)
Coverage comparison generated by |
|
🔑 Smoke Copilot PAT PAT auth validated. All systems operational. ✅ |
|
📡 Smoke OTel Tracing completed. All tracing scenarios validated. ✅ |
|
✅ Smoke Copilot BYOK AOAI (Entra) completed. Copilot AOAI BYOK (Entra) mode operational. 🔓 |
|
🌑 The shadows whisper... Smoke Codex failed. The oracle requires further meditation... |
|
✅ Smoke Copilot BYOK completed. Copilot BYOK mode operational. 🔓 |
|
🔌 Smoke Services — All services reachable! ✅ |
|
✅ Build Test Suite completed successfully! |
|
📰 VERDICT: Smoke Copilot has concluded. All systems operational. This is a developing story. 🎤 |
|
❌ Contribution Check failed. Please review the logs for details. |
|
❌ Smoke Claude failed |
|
🚀 Security Guard has started processing this pull request |
|
Chroot tests passed! Smoke Chroot - All security and functionality tests succeeded. |
|
✅ Smoke Copilot BYOK AOAI (api-key) completed. Copilot AOAI BYOK (api-key) mode operational. 🔓 |
|
✅ Smoke Gemini completed. All facets verified. 💎 Smoke test completed with partial failures. Results reported to PR #5068. |
🔥 Smoke Test Results — Auth mode: PAT (COPILOT_GITHUB_TOKEN)
Overall: PASS /cc @lpcox
|
🔥 Smoke Test Results — PASS
PR: fix: recognize copilot-pull-request-reviewer in ci-gate Overall: PASS
|
|
Copilot BYOK Smoke Test: PASS ✅
Running via api-proxy sidecar → api.githubcopilot.com (real credentials held by sidecar, agent sees placeholder only).
|
|
📡 OTel Tracing Smoke Test Results
All scenarios pass or are expected-pending. No regressions detected.
|
Chroot Version Comparison Results
Overall: ❌ FAILED — Python and Node.js versions differ between host and chroot environment.
|
|
fix: recognize copilot-pull-request-reviewer in ci-gate: ✅ Running in direct BYOK mode (COPILOT_PROVIDER_API_KEY + COPILOT_PROVIDER_BASE_URL) via api-proxy → Azure OpenAI (Foundry, o4-mini-aw)
|
Smoke Test: GitHub Actions Services Connectivity
Overall: FAIL —
|
🏗️ Build Test Suite Results
Overall: 8/8 ecosystems passed — ✅ PASS
|
The Copilot review bot uses login
copilot-pull-request-reviewer, which was missing from the ci-gate's reviewer set. This caused the gate to never recognize Copilot's review and never add theready-for-cilabel.One-line fix: add
'copilot-pull-request-reviewer'to the Set.