ci: request a Copilot review once CI first passes on a PR to main - #196
Open
alongd wants to merge 1 commit into
Open
ci: request a Copilot review once CI first passes on a PR to main#196alongd wants to merge 1 commit into
alongd wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions workflow that requests a GitHub Copilot code review automatically the first time CI succeeds for a PR targeting main, using workflow_run as the trigger and dedup logic to keep it to one review per PR.
Changes:
- Introduces
.github/workflows/copilot-review.ymlto listen for successfulT3 CIruns on PRs. - Resolves the associated PR (payload for same-repo PRs; head-SHA lookup fallback for forks) and requests
copilot-pull-request-reviewer[bot]. - Skips requesting if Copilot is already requested or has already reviewed.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
alongd
force-pushed
the
copilot-review-on-green
branch
from
August 22, 2026 20:39
7940359 to
a05edbc
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #196 +/- ##
==========================================
+ Coverage 82.69% 82.71% +0.01%
==========================================
Files 72 72
Lines 11709 11720 +11
Branches 2524 2526 +2
==========================================
+ Hits 9683 9694 +11
Misses 1434 1434
Partials 592 592
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
alongd
force-pushed
the
copilot-review-on-green
branch
2 times, most recently
from
August 23, 2026 13:26
31eacff to
63f68d3
Compare
Adds .github/workflows/copilot-review.yml. It listens on workflow_run for the "T3 CI" workflow completing successfully and, for a PR targeting main, requests a Copilot code review exactly once — the first time CI is green. A dedup check (skip if Copilot is already a requested reviewer or has already reviewed) keeps it to a single pass rather than re-firing on every subsequent green push. Chosen over a copilot_code_review branch ruleset, which can only fire on PR open or on every push and cannot gate on CI passing — so it would review red branches and burn Copilot's premium-request quota on them.
alongd
force-pushed
the
copilot-review-on-green
branch
from
August 23, 2026 16:27
63f68d3 to
a2d6b54
Compare
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.
What
Adds
.github/workflows/copilot-review.yml: the first time a PR tomainpasses CI, it requests a Copilot code review — once.How
Listens on
workflow_runfor the CI workflow completing withconclusion == successon apull_request, resolves the PR (event payload for same-repo PRs; head-SHA lookup for forks), and addscopilot-pull-request-reviewer[bot]as a reviewer. A dedup check (skip if Copilot is already requested or has already reviewed) keeps it to one pass per PR — it does not re-fire on later green pushes.Why gated on green, not a ruleset
A
copilot_code_reviewbranch ruleset can only fire on PR open or on every push — it cannot wait for CI. Gating on green keeps Copilot off red branches and off the quota until the branch actually builds, and holds it to a single review.Notes
ci.ymlor any source/test.main; it takes effect on the next PR.permissions: pull-requests: write,contents: read.