From 2ebdafaed893f9b99e79e5e4427d793f8b954f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Bo=CC=88hm?= Date: Thu, 16 Jan 2025 14:44:33 +0100 Subject: [PATCH] Improvement: handle stale issues and prs --- .github/workflows/repo-maintenance.yml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/.github/workflows/repo-maintenance.yml b/.github/workflows/repo-maintenance.yml index caaed1946..0c11f359e 100644 --- a/.github/workflows/repo-maintenance.yml +++ b/.github/workflows/repo-maintenance.yml @@ -20,15 +20,29 @@ jobs: steps: - uses: actions/stale@v9 with: - days-before-stale: 14 - days-before-close: 60 - any-of-labels: 'cant-reproduce,not a bug' - stale-issue-label: stale - stale-pr-label: stale + start-date: 2023-04-26 + operations-per-run: 300 + remove-stale-when-updated: true + days-before-issue-stale: 14 + days-before-issue-close: 14 # days after the issue is marked as stale 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. Thank you for your contributions. + close-issue-message: > + This issue has been automatically closed because it has not had + recent activity. Please add a comment if you want to get this issue re-opened. Thank you + for your contributions. + stale-issue-label: stale # adds a label + exempt-issue-labels: 'acknowledged, contribution needed' # exclude issues with label + days-before-pr-stale: 14 + days-before-pr-close: -1 # never close prs + stale-pr-label: stale # adds a label + any-of-pr-labels: 'changes requested' # only consider prs with this label + 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. Thank you + for your contributions. lock-threads: name: 'Lock Old Threads'