From 90d5b6b2d916eab427bf449669d7676083cb453d Mon Sep 17 00:00:00 2001 From: yanyiwu Date: Wed, 11 Sep 2024 10:00:02 +0800 Subject: [PATCH] [github/actions] stale 5 years -> 3 years --- .github/workflows/stale-issues.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index b80fda3..dc5745a 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -2,7 +2,7 @@ name: Close Stale Issues on: schedule: - - cron: '10 13 * * *' # Run daily + - cron: '10 13 * * 1' # Run Weekly Monday jobs: stale: @@ -15,9 +15,9 @@ jobs: - uses: actions/stale@v5 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue has not been updated for over 5 years and will be marked as stale. If the issue still exists, please comment or update the issue, otherwise it will be closed after 7 days.' + stale-issue-message: 'This issue has not been updated for over 3 years and will be marked as stale. If the issue still exists, please comment or update the issue, otherwise it will be closed after 7 days.' close-issue-message: 'This issue has been automatically closed due to inactivity. If the issue still exists, please reopen it.' - days-before-issue-stale: 1825 + days-before-issue-stale: 1095 days-before-issue-close: 7 stale-issue-label: 'Stale' exempt-issue-labels: 'pinned,security'