From e07ecef4723073abc096d0bf78d1cecadcf74a69 Mon Sep 17 00:00:00 2001 From: Daniel Johnson Date: Fri, 23 Jan 2026 13:24:58 -0800 Subject: [PATCH 1/2] Extend stale PR closure period to 365 days Updated the days before closing stale PRs from 180 to 365. Due to internal priorities we need to allow more time for PR reviews. Based on my reading, we need to increase `days-before-close` to ensure that any PR marked with the `stale` label currently benefits from the extension. Once we are caught up on the backlog, we can revisit this setting. --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c7dcb74f..77b7d368 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -24,7 +24,7 @@ jobs: stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open :smile:' close-pr-message: 'This PR has been closed because it was inactive for 180 days. If you want to continue working on it, please open a new PR.' days-before-stale: 90 - days-before-close: 180 + days-before-close: 365 stale-pr-label: 'stale' exempt-pr-labels: 'keep' close-issue-reason: not_planned From 01714f2f2d343c37f788b483c24f5e313bee54e6 Mon Sep 17 00:00:00 2001 From: Daniel Johnson Date: Fri, 23 Jan 2026 13:27:06 -0800 Subject: [PATCH 2/2] Update stale PR messages and inactivity duration comments --- .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 77b7d368..6763f938 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -21,8 +21,8 @@ jobs: steps: - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 with: - stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open :smile:' - close-pr-message: 'This PR has been closed because it was inactive for 180 days. If you want to continue working on it, please open a new PR.' + stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 365 days of inactivity. Leave a comment if you want to keep it open.' + close-pr-message: 'This PR has been closed because it was inactive for 365 days. If you want to continue working on it, please open a new PR.' days-before-stale: 90 days-before-close: 365 stale-pr-label: 'stale'