Skip to content

Commit

Permalink
MINOR: Increase operations for stale PR workflow (apache#17854)
Browse files Browse the repository at this point in the history
The Stale PRs workflow is only able to act on a relatively small number of PRs due to the API operations limit. This patch increases the limit from 100 to 500.

Reviewers: Josep Prat <josep.prat@aiven.io>, Chia-Ping Tsai <chia7712@gmail.com>
  • Loading branch information
mumrah authored Nov 20, 2024
1 parent 9f7af93 commit e9fd043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/stale@v9
with:
debug-only: ${{ inputs.dryRun || false }}
operations-per-run: ${{ inputs.operationsPerRun || 100 }}
operations-per-run: ${{ inputs.operationsPerRun || 500 }}
ascending: true
days-before-stale: 90
days-before-close: 30 # Since adding 'stale' will update the PR, days-before-close is relative to that.
Expand Down

0 comments on commit e9fd043

Please sign in to comment.