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 dd79716fb3 Increase operations per run and temporarily run on this PR
dd79716fb3 is described below
commit dd79716fb39439b23075cb25de1c38800829fbf5
Author: Nic Crane <[email protected]>
AuthorDate: Thu Nov 13 18:41:21 2025 +0000
Increase operations per run and temporarily run on this PR
---
.github/workflows/stale.yml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 7dfa5fd02a..41f3ac4153 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -18,7 +18,11 @@
name: "Close stale PRs"
on:
schedule:
- - cron: "0 11 * * 3" # Run once per week on Wednesday at 11:00 AM UTC
+ - cron: "0 11 * * *" # Run daily at 11:00 AM UTC
+ pull_request:
+ paths:
+ - '.github/workflows/stale.yml'
+ workflow_dispatch:
jobs:
close-stale-prs:
@@ -36,6 +40,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 +58,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 +77,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 }}