From d7708a991741177473e70d2cab5f684f75715326 Mon Sep 17 00:00:00 2001 From: Daniil Fedotov Date: Tue, 9 Apr 2024 11:37:31 -0400 Subject: [PATCH] build(bot): restrict issues which can be marked stale (#2795) Exclude `accepted` and assigned issues from stale. Add mention to kanisterio/maintainers to stale messages to notify maintainers. --- .github/workflows/stale.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 1515582a3a..d4e17dd070 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -19,11 +19,14 @@ jobs: close-pr-label: rotten stale-issue-label: stale stale-pr-label: stale - exempt-issue-labels: frozen + exempt-issue-labels: + - frozen + - accepted exempt-pr-labels: frozen - close-issue-message: This issue is closed due to inactivity. Feel free to reopen it, if it's still relevant. - close-pr-message: This PR is closed due to inactivity. Feel free to reopen it, if it's still relevant. - stale-issue-message: This issue is marked as stale due to inactivity. Add a new comment to reactivate it. - stale-pr-message: This PR is marked as stale due to inactivity. Add a new comment to reactivate it. + close-issue-message: This issue is closed due to inactivity. Feel free to reopen it, if it's still relevant. CC @kanisterio/maintainers + close-pr-message: This PR is closed due to inactivity. Feel free to reopen it, if it's still relevant. CC @kanisterio/maintainers + stale-issue-message: This issue is marked as stale due to inactivity. Add a new comment to reactivate it. CC @kanisterio/maintainers + stale-pr-message: This PR is marked as stale due to inactivity. Add a new comment to reactivate it. CC @kanisterio/maintainers remove-issue-stale-when-updated: true remove-pr-stale-when-updated: true + exempt-all-assignees: true