From e9fd0437d56e5b7490d18a7af036afa519d3b83c Mon Sep 17 00:00:00 2001 From: David Arthur Date: Wed, 20 Nov 2024 06:50:19 -0500 Subject: [PATCH] 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 , Chia-Ping Tsai --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 816b754a968cd..9382d4173e94c 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -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.