From 87ac4cff60c05bac9d118df25b13987df6f1a5bd Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Tue, 24 Sep 2024 15:42:26 -0400 Subject: [PATCH] Update close_stale_issues configuration (#18298) @notpeter and I decided on these things: - Give users 10 days to respond - Only run once a week: Tuesday @7AM ET Release Notes: - N/A --- .github/workflows/close_stale_issues.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/close_stale_issues.yml b/.github/workflows/close_stale_issues.yml index 1f287fb5e3..2d4085524b 100644 --- a/.github/workflows/close_stale_issues.yml +++ b/.github/workflows/close_stale_issues.yml @@ -1,7 +1,7 @@ name: "Close Stale Issues" on: schedule: - - cron: "0 1 * * *" + - cron: "0 11 * * 2" workflow_dispatch: jobs: @@ -14,7 +14,7 @@ jobs: stale-issue-message: > Hi there! 👋 - We're working to clean up our issue tracker by closing older issues that might not be relevant anymore. Are you able to reproduce this issue in the latest version of Zed? If so, please let us know by commenting on this issue and we will keep it open; otherwise, we'll close it in a week. Feel free to open a new issue if you're seeing this message after the issue has been closed. + We're working to clean up our issue tracker by closing older issues that might not be relevant anymore. Are you able to reproduce this issue in the latest version of Zed? If so, please let us know by commenting on this issue and we will keep it open; otherwise, we'll close it in 10 days. Feel free to open a new issue if you're seeing this message after the issue has been closed. Thanks for your help! close-issue-message: "This issue was closed due to inactivity; feel free to open a new issue if you're still experiencing this problem!" @@ -23,7 +23,7 @@ jobs: # 'community' to 'zed' repository. The migration added activity to all # issues, preventing 365 days from working until then. days-before-stale: 180 - days-before-close: 7 + days-before-close: 10 any-of-issue-labels: "defect,panic / crash" operations-per-run: 1000 ascending: true