From f9d05ac911824470649807fa07045c05931341c4 Mon Sep 17 00:00:00 2001 From: Maximilian Moehl <44866320+maxmoehl@users.noreply.github.com> Date: Thu, 5 Dec 2024 08:57:15 +0100 Subject: [PATCH] fix: set correct close time I initially thought the days-before-close is relative to the last activity on the PR but it seems to be relative to the time the stale label was added. I lowered it to 15 days to achieve the actual desired time of 45 days before closing an item. --- .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 ae1567d8..4516c3ba 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -19,7 +19,7 @@ jobs: stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within 15 days.' stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within 15 days.' days-before-stale: 30 - days-before-close: 45 + days-before-close: 15 stale-issue-label: 'stale' stale-pr-label: 'stale' exempt-issue-labels: 'evergreen'