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

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


The following commit(s) were added to refs/heads/main by this push:
     new 5555ee946d add stale PR workflow (#10194)
5555ee946d is described below

commit 5555ee946dc1b3e9cf98b1a04d7001d4c66686dc
Author: Jeffrey Vo <[email protected]>
AuthorDate: Wed Jun 24 04:39:36 2026 +0900

    add stale PR workflow (#10194)
    
    similar to what datafusion has:
    
    - https://github.com/apache/datafusion/pull/10046
    
    PRs are building up on this repo, and quite a few seem to be stale.
    it'll make it easier for us to see which PRs are actually active
    (whether draft or not) if we close the stale ones.
    
    we could set the
    
[exempt-pr-labels](https://github.com/marketplace/actions/close-stale-issues#exempt-pr-labels)
    option if we have some PRs we prefer to keep alive
---
 .github/workflows/stale.yml | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000000..2ea75ada00
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+name: "Close stale PRs"
+on:
+  schedule:
+    - cron: "30 1 * * *"
+
+jobs:
+  close-stale-prs:
+    runs-on: ubuntu-slim
+    permissions:
+      actions: write
+      issues: write
+      pull-requests: write
+    steps:
+      - uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899  # v10.3.0
+        with:
+          stale-pr-message: "Thank you for your contribution. Unfortunately, 
this pull request is stale because it has been open 60 days with no activity. 
Please remove the stale label or comment or this will be closed in 7 days."
+          days-before-pr-stale: 60
+          days-before-pr-close: 7
+          # do not close stale issues
+          days-before-issue-stale: -1
+          days-before-issue-close: -1
+          repo-token: ${{ secrets.GITHUB_TOKEN }}
+          operations-per-run: 150

Reply via email to