From 1d9566f6f4c7a8cac982683907a1c36c545e0ae0 Mon Sep 17 00:00:00 2001 From: Albert-Jan Schot Date: Tue, 30 Dec 2025 16:27:25 +0100 Subject: [PATCH 1/4] [fix] added more issues per run to speed up cleaning. --- .github/workflows/stale-issues.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index add00bbee30..4655dec511c 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -13,6 +13,7 @@ jobs: with: days-before-stale: 335 days-before-close: 30 + operations-per-run: 100 stale-issue-message: 'This issue has been automatically marked as stale due to inactivity, and will be closed in 30 days if no further activity occurs. If you believe this issue should remain open, please comment on it to let us know. Any activity will reset the stale timer.' stale-issue-label: 'stale' close-issue-message: 'Close as not planned, feel free to reopen if new information arises.' From cdc31da6cd9beebec9a0ea935db7be2ae386297d Mon Sep 17 00:00:00 2001 From: Albert-Jan Schot Date: Fri, 2 Jan 2026 09:48:41 +0100 Subject: [PATCH 2/4] [fix] excluded prs and on hold issues --- .github/workflows/stale-issues.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index 4655dec511c..4690724ab85 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -18,4 +18,6 @@ jobs: stale-issue-label: 'stale' close-issue-message: 'Close as not planned, feel free to reopen if new information arises.' close-issue-label: 'stale-closed' - exempt-issue-labels: 'keep-open,epic' \ No newline at end of file + exempt-issue-labels: 'keep-open,epic,on hold' + days-before-pr-stale: -1 + days-before-pr-close: -1 \ No newline at end of file From d4c677cb6a3100f7aa0a180c648175e018817319 Mon Sep 17 00:00:00 2001 From: Milan Holemans <11723921+milanholemans@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:55:32 +0100 Subject: [PATCH 3/4] Update .github/workflows/stale-issues.yml --- .github/workflows/stale-issues.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index 4690724ab85..8f21d49bcfc 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -16,7 +16,7 @@ jobs: operations-per-run: 100 stale-issue-message: 'This issue has been automatically marked as stale due to inactivity, and will be closed in 30 days if no further activity occurs. If you believe this issue should remain open, please comment on it to let us know. Any activity will reset the stale timer.' stale-issue-label: 'stale' - close-issue-message: 'Close as not planned, feel free to reopen if new information arises.' + close-issue-message: 'Closing as not planned, feel free to reopen if new information arises.' close-issue-label: 'stale-closed' exempt-issue-labels: 'keep-open,epic,on hold' days-before-pr-stale: -1 From 071943141ddb9b45401afcf85e4408b0d3affb3d Mon Sep 17 00:00:00 2001 From: Milan Holemans <11723921+milanholemans@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:59:40 +0100 Subject: [PATCH 4/4] Explicitly uses issue options --- .github/workflows/stale-issues.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index 8f21d49bcfc..0ff4850533a 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -11,8 +11,8 @@ jobs: steps: - uses: actions/stale@v10 with: - days-before-stale: 335 - days-before-close: 30 + days-before-issue-stale: 335 + days-before-issue-close: 30 operations-per-run: 100 stale-issue-message: 'This issue has been automatically marked as stale due to inactivity, and will be closed in 30 days if no further activity occurs. If you believe this issue should remain open, please comment on it to let us know. Any activity will reset the stale timer.' stale-issue-label: 'stale'