From 3488281958efdbc795dd55be115795ff1804bb9c Mon Sep 17 00:00:00 2001 From: gregfromstl Date: Thu, 14 Nov 2024 05:56:10 +0000 Subject: [PATCH] [CI] Chore: Update PR stale time to 7 days (#5417) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CNCT-2336 --- ## PR-Codex overview This PR updates the configuration for stale issues and pull requests in the `.github/workflows/stale.yml` file, reducing the inactivity duration before marking them as stale and the time before they are closed. ### Detailed summary - Changed `days-before-stale` from 30 to 7. - Changed `days-before-close` from 5 to 2. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .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 3b5b8914092..2b359c75f61 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,5 +11,5 @@ jobs: with: stale-issue-message: 'This issue has been inactive for 30 days. It is now marked as stale and will be closed in 5 days if no further activity occurs.' stale-pr-message: 'This PR has been inactive for 30 days. It is now marked as stale and will be closed in 5 days if no further activity occurs.' - days-before-stale: 30 - days-before-close: 5 + days-before-stale: 7 + days-before-close: 2