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