[Python-checkins] Update Stale action message (GH-23791)

Mariatta webhook-mailer at python.org
Tue Dec 15 21:36:45 EST 2020


https://github.com/python/cpython/commit/801165e1a99507d604d4db82e44b1cab9f9c715c
commit: 801165e1a99507d604d4db82e44b1cab9f9c715c
branch: master
author: Mariatta <Mariatta at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2020-12-15T18:36:33-08:00
summary:

Update Stale action message (GH-23791)

We don't close PRs after it becomes stale.

files:
M .github/workflows/stale.yml

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 706d8e11a2073..58c9a4f21c30f 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -13,7 +13,7 @@ jobs:
     - uses: actions/stale at v3
       with:
         repo-token: ${{ secrets.GITHUB_TOKEN }}
-        stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
+        stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.'
         stale-pr-label: 'stale'
         days-before-stale: 30
         days-before-close: -1



More information about the Python-checkins mailing list