mirror of https://github.com/apache/kafka.git
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:
parent
9f7af93978
commit
e9fd0437d5
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue