Skip to content

Commit 7cd2f2a

Browse files
authored
GH-48129: [CI] Stale issues bot only looks at 30 issues at a time (#48130)
### Rationale for this change Stale issues bot only analyses 30 issues at a time due to defaults. ### What changes are included in this PR? Increase them to 1000 and run daily to catch any beyond this value. ### Are these changes tested? Yeah, I temporarily ran on this PR and looks like everything which is permitted on PRs did run. ### Are there any user-facing changes? No * GitHub Issue: #48129 Authored-by: Nic Crane <[email protected]> Signed-off-by: Nic Crane <[email protected]>
1 parent dbbe0ee commit 7cd2f2a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/stale.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
name: "Close stale PRs"
1919
on:
2020
schedule:
21-
- cron: "0 11 * * 3" # Run once per week on Wednesday at 11:00 AM UTC
21+
- cron: "10 11 * * *" # Run daily at 11:10 AM UTC
22+
workflow_dispatch:
2223

2324
jobs:
2425
close-stale-prs:
@@ -36,6 +37,7 @@ jobs:
3637
# exclude issues
3738
days-before-issue-stale: -1
3839
days-before-issue-close: -1
40+
operations-per-run: 1000
3941
repo-token: ${{ secrets.GITHUB_TOKEN }}
4042
close-stale-issues-usage:
4143
runs-on: ubuntu-latest
@@ -53,6 +55,7 @@ jobs:
5355
stale-issue-label: "Status: stale-warning"
5456
days-before-issue-stale: 365
5557
days-before-issue-close: 14
58+
operations-per-run: 1000
5659
repo-token: ${{ secrets.GITHUB_TOKEN }}
5760
close-stale-issues-enhancement:
5861
runs-on: ubuntu-latest
@@ -71,4 +74,5 @@ jobs:
7174
stale-issue-label: "Status: stale-warning"
7275
days-before-issue-stale: 365
7376
days-before-issue-close: 14
77+
operations-per-run: 1000
7478
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)