Skip to content

Commit 7467249

Browse files
authored
tune stale issue management: (#10060)
- increase actions to 30 so that it processes ~15 issues in a single run - disable issue checks so that it only processes prs
1 parent 4f5928e commit 7467249

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/manage-stale-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
ascending: true # Spend API operations budget on older, more-likely-to-get-closed issues first
3131
close-issue-message: 'This issue was closed because it has been stale for 7 days with no activity.'
3232
close-pr-message: 'This pull request was closed because it has been stale for 7 days with no activity.'
33-
days-before-issue-stale: 365
33+
days-before-issue-stale: -1
3434
days-before-pr-stale: 60
3535
days-before-close: 7
3636
debug-only: ${{ github.event_name == 'pull_request' }} # Dry-run when true.
3737
exempt-all-milestones: true # There are some projects in the repo, so possibly milestones are relevant.
3838
exempt-issue-labels: do-not-close,feature-gate
3939
exempt-pr-labels: do-not-close,feature-gate
40-
operations-per-run: ${{ github.event_name == 'pull_request' && 100 || 10 }}
40+
operations-per-run: ${{ github.event_name == 'pull_request' && 300 || 30 }}
4141
stale-issue-label: stale
4242
stale-issue-message: 'This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
4343
stale-pr-label: stale

0 commit comments

Comments
 (0)