From 82fbede15c8c533e64a0292297265dc93778f761 Mon Sep 17 00:00:00 2001 From: metagn Date: Tue, 20 Jun 2023 16:59:13 +0300 Subject: [PATCH] close staled issues after 30 days instead of 7 7 days is too little to react to an RFC being stale, especially given the stale time being 3 years. For this reason, change to 30 days. --- .github/workflows/stale.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 6f380fa..949e4a6 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,6 +11,7 @@ jobs: - uses: actions/stale@v8 with: days-before-issue-stale: 1095 # 365 * 3 + days-before-issue-close: 30 stale-issue-message: > This RFC is stale because it has been open for 1095 days with no activity. - Contribute a fix or comment on the issue, or it will be closed in 7 days. + Contribute a fix or comment on the issue, or it will be closed in 30 days.