From a42cb4c5b7aa85040c115b7ce1f2628c9329ecde Mon Sep 17 00:00:00 2001 From: Stefan Dietz Date: Tue, 5 Dec 2023 09:06:13 +0100 Subject: [PATCH] chore: Stale Bot config: Disable debug mode and set days-before-stale to 365 for testing --- .github/workflows/stale.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8ca183b04b..5530621433 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,10 +11,9 @@ jobs: steps: - uses: actions/stale@v8 with: - days-before-stale: 170 + days-before-stale: 365 # @todo Revert to 170 after testing days-before-close: 10 days-before-pr-close: -1 # Don't close PR's stale-issue-message: 'This issue has been automatically marked as stale and will be closed in 10 days because it has not had recent activity and is much likely outdated. If you think this issue is still relevant and applicable, please post a comment or remove the Stale label.' stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity and is much likely outdated. If you think this PR is still relevant and applicable, please post a comment or remove the Stale label.' close-issue-message: 'This issue was closed because it has been stale for 10 days with no activity. If the issue is still relevant to you, feel free to re-open with a comment.' - debug-only: true # @todo remove after testing