This is an automated email from the ASF dual-hosted git repository.

davidarthur pushed a commit to branch stale-pr-api-operations
in repository https://gitbox.apache.org/repos/asf/kafka.git

commit 76026ce7fef99692b5cc1739d1f169b7569b993c
Author: David Arthur <[email protected]>
AuthorDate: Mon Nov 18 17:00:00 2024 -0500

    Increase operations for stale PR workflow
    
    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.
---
 .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 816b754a968..9382d4173e9 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.

Reply via email to