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

thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 7cd2f2ae50 GH-48129: [CI] Stale issues bot only looks at 30 issues at 
a time (#48130)
7cd2f2ae50 is described below

commit 7cd2f2ae50e86cbbaa4d0585fddc73fa9d15e255
Author: Nic Crane <[email protected]>
AuthorDate: Tue Nov 18 11:03:52 2025 +0000

    GH-48129: [CI] Stale issues bot only looks at 30 issues at a time (#48130)
    
    ### Rationale for this change
    
    Stale issues bot only analyses 30 issues at a time due to defaults.
    
    ### What changes are included in this PR?
    
    Increase them to 1000 and run daily to catch any beyond this value.
    
    ### Are these changes tested?
    
    Yeah, I temporarily ran on this PR and looks like everything which is 
permitted on PRs did run.
    
    ### Are there any user-facing changes?
    
    No
    * GitHub Issue: #48129
    
    Authored-by: Nic Crane <[email protected]>
    Signed-off-by: Nic Crane <[email protected]>
---
 .github/workflows/stale.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 7dfa5fd02a..45627dc88f 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -18,7 +18,8 @@
 name: "Close stale PRs"
 on:
   schedule:
-    - cron: "0 11 * * 3" # Run once per week on Wednesday at 11:00 AM UTC
+    - cron: "10 11 * * *" # Run daily at 11:10 AM UTC
+  workflow_dispatch:
 
 jobs:
   close-stale-prs:
@@ -36,6 +37,7 @@ jobs:
           # exclude issues
           days-before-issue-stale: -1
           days-before-issue-close: -1
+          operations-per-run: 1000
           repo-token: ${{ secrets.GITHUB_TOKEN }}
   close-stale-issues-usage:
     runs-on: ubuntu-latest
@@ -53,6 +55,7 @@ jobs:
           stale-issue-label: "Status: stale-warning"
           days-before-issue-stale: 365
           days-before-issue-close: 14
+          operations-per-run: 1000
           repo-token: ${{ secrets.GITHUB_TOKEN }}
   close-stale-issues-enhancement:
     runs-on: ubuntu-latest
@@ -71,4 +74,5 @@ jobs:
           stale-issue-label: "Status: stale-warning"
           days-before-issue-stale: 365
           days-before-issue-close: 14
+          operations-per-run: 1000
           repo-token: ${{ secrets.GITHUB_TOKEN }}

Reply via email to