[Python-checkins] Process more stale PRs, oldest first (GH-31407)

Mariatta webhook-mailer at python.org
Fri Feb 18 14:28:41 EST 2022


https://github.com/python/cpython/commit/892ff93d7f47f8edae5c8a0f5d5ffd4b0a8f8d77
commit: 892ff93d7f47f8edae5c8a0f5d5ffd4b0a8f8d77
branch: main
author: Hugo van Kemenade <hugovk at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2022-02-18T11:28:12-08:00
summary:

Process more stale PRs, oldest first (GH-31407)

files:
M .github/workflows/stale.yml

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index fc0c15dc0a600..25e29e83dff2b 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -23,6 +23,8 @@ jobs:
         stale-pr-label: 'stale'
         days-before-stale: 30
         days-before-close: -1
+        ascending: true
+        operations-per-run: 120
 
     - name: "Check PRs with 'CLA not signed' label"
       uses: actions/stale at v4
@@ -34,3 +36,5 @@ jobs:
         close-pr-message: 'Closing this stale PR because the CLA is still not signed.'
         days-before-stale: 30
         days-before-close: 14
+        ascending: true
+        operations-per-run: 120



More information about the Python-checkins mailing list