From 253979bd3e23448f013c6adc6b99f801f3f28b3d Mon Sep 17 00:00:00 2001 From: "James R. Perkins" Date: Thu, 8 Apr 2021 07:09:01 -0700 Subject: [PATCH] Increase the stale warning message from 30 to 45 days --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index eb304c8c4ac..9a870489c0b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: 'There has been no activity on this PR for 30 days. It will be auto-closed after 90 days.' + stale-pr-message: 'There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.' close-pr-message: 'There has been no activity on this PR for 90 days and it has been closed automatically.' - days-before-stale: 30 + days-before-stale: 45 days-before-close: 90