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 5a480444da GH-48162: [CI] Stale issues bot hit secondary rate limit
and did not complete (#48165)
5a480444da is described below
commit 5a480444da35fa26bc6952755510ad39df9f7002
Author: Nic Crane <[email protected]>
AuthorDate: Tue Nov 18 17:43:18 2025 +0000
GH-48162: [CI] Stale issues bot hit secondary rate limit and did not
complete (#48165)
### Rationale for this change
Stale issues bot hits rate limit on API and doesn't post comments
### What changes are included in this PR?
Reduce how many operations it can complete (I went and manually added
comments myself to the issues/PRs with labels but no comments)
### Are these changes tested?
No
### Are there any user-facing changes?
No
* GitHub Issue: #48162
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
---
.github/workflows/stale.yml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 45627dc88f..2e28538e3e 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -18,7 +18,7 @@
name: "Close stale PRs"
on:
schedule:
- - cron: "10 11 * * *" # Run daily at 11:10 AM UTC
+ - cron: "10 11 * * *" # Run daily at 11:10 UTC
workflow_dispatch:
jobs:
@@ -37,7 +37,6 @@ 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
@@ -55,7 +54,6 @@ 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
@@ -74,5 +72,4 @@ 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 }}