epugh commented on code in PR #2184:
URL: https://github.com/apache/solr/pull/2184#discussion_r1461836649


##########
.github/workflows/stale.yml:
##########
@@ -0,0 +1,39 @@
+# This workflow warns of PRs that have had no activity for a specified amount 
of time.
+#
+# For more information, see https://github.com/actions/stale
+name: Mark stale pull requests
+
+on:
+  # Run every day at 00:00 UTC
+  schedule:
+    - cron: '0 0 * * *'
+  # Or run on demand
+  workflow_dispatch:
+
+jobs:
+  stale:
+
+    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+
+    steps:
+      - uses: actions/stale@v9
+        with:
+          repo-token: ${{ secrets.GITHUB_TOKEN }}
+
+          days-before-pr-stale: 14

Review Comment:
   When I first saw this, I thought 14 days was pretty aggressive!  Quepid has 
120 days till stale (though of course tiny community!)....   And then another 
60 days till the ticket gets closed...   (because I like having only a few 
issues!).   
   
   The automated email is an interesting idea!    If it had the labels, then 
folks might be able to see "oh, here is a PR in an area I care about" and move 
them along...



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to