Require clean Copilot review before PR routing#126
Closed
trask wants to merge 4 commits into
Closed
Conversation
Pull request dashboard statusStatus last refreshed: 2026-07-21 01:20:43 UTC.
This automated status or its linked feedback items may be incorrect. If something looks wrong, report it with the result you expected. |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an optional clean-Copilot-review gate to PR dashboard routing.
Changes:
- Adds configuration and workflow permissions for Copilot re-reviews.
- Tracks reviews by commit and requests re-review after later pushes.
- Adds unit coverage and documentation.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
pull-request-dashboard/README.md |
Documents the new option. |
.github/workflows/pull-request-dashboard.yml |
Forwards repository configuration. |
.github/workflows/pull-request-dashboard-repo.yml |
Configures permissions and CLI argument. |
.github/scripts/pull-request-dashboard/dashboard.py |
Implements review detection and routing gate. |
.github/scripts/pull-request-dashboard/github_cli.py |
Fetches review commits and requests reviews. |
.github/scripts/pull-request-dashboard/test_dashboard.py |
Tests gate behavior. |
.github/scripts/pull-request-dashboard/test_github_cli.py |
Tests API integration. |
.github/scripts/pull-request-dashboard/test_top_level_actions.py |
Tests configuration propagation. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| permission-issues: read | ||
| permission-members: read | ||
| permission-pull-requests: read | ||
| permission-pull-requests: write |
This was referenced Jul 21, 2026
Member
Author
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.
Require a Copilot review with no inline findings on the current PR head before the dashboard routes it to reviewers or maintainers. The dashboard re-requests Copilot after later pushes when needed, avoids duplicate pending requests, and relies on repository automatic review for the initial pass.
Closes #110.