MINOR: Increase operations for stale PR workflow (#17854)

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>
This commit is contained in:
David Arthur 2024-11-20 06:50:19 -05:00 committed by GitHub
parent 9f7af93978
commit e9fd0437d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ jobs:
- uses: actions/stale@v9 - uses: actions/stale@v9
with: with:
debug-only: ${{ inputs.dryRun || false }} debug-only: ${{ inputs.dryRun || false }}
operations-per-run: ${{ inputs.operationsPerRun || 100 }} operations-per-run: ${{ inputs.operationsPerRun || 500 }}
ascending: true ascending: true
days-before-stale: 90 days-before-stale: 90
days-before-close: 30 # Since adding 'stale' will update the PR, days-before-close is relative to that. days-before-close: 30 # Since adding 'stale' will update the PR, days-before-close is relative to that.