Enable extended PR screening for external PRs#13312
Merged
Merged
Conversation
Opts in to the new PR screening features in the shared triage workflow: - Instantly closes PRs with zero file changes - Detects same-author resubmissions of recently closed PRs - Fast-tracks small, well-described fixes to ready-for-review - Accelerates closure of large unsolicited PRs (3 days vs 7) Depends on desktop/gh-cli-and-desktop-shared-workflows#17 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Enables the new “extended PR screening” behavior in the shared PR triage workflow by opting in via reusable-workflow inputs, including customized auto-close timings.
Changes:
- Opts
triage-pr-requirements.ymlinto PR screening viaenable_pr_screening: true. - Configures close timeouts for general PRs and “large PRs” on both event-driven and scheduled runs.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/triage-pull-requests.yml | Passes new screening/timeout inputs to the shared triage reusable workflow for both live PR events and the daily scheduled job. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comments suppressed due to low confidence (1)
.github/workflows/triage-pull-requests.yml:48
- Same as above: these timeout values (4 days / 2 days) differ from what the PR description claims (3 days / 7 days). Please align the workflow inputs and the PR description to avoid confusion about the triage behavior on the scheduled run.
enable_pr_screening: true
days_until_close: 4
large_pr_days_until_close: 2
- Files reviewed: 1/1 changed files
- Comments generated: 1
williammartin
approved these changes
Apr 30, 2026
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.
Opts in to the new PR screening features in the shared triage workflow:
Depends on desktop/gh-cli-and-desktop-shared-workflows#17