From a40b69b4e9e84ae16d2c2b13f5bb3443fd10e456 Mon Sep 17 00:00:00 2001 From: artiebits Date: Fri, 19 Nov 2021 09:14:20 +0100 Subject: [PATCH] Update stale.yml --- .github/workflows/stale.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 54fc6cb..024c033 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,7 +7,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: "10 12 * * *" + - cron: "30 1 * * *" jobs: stale: @@ -17,8 +17,11 @@ jobs: pull-requests: write steps: - - uses: actions/stale@v3 + - uses: actions/stale@v4 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - 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" - stale-issue-label: "wontfix" + stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days." + stale-pr-message: "This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days." + close-issue-message: "This issue was closed because it has been stalled for 5 days with no activity." + close-pr-message: "This PR was closed because it has been stalled for 10 days with no activity." + days-before-stale: 30 + days-before-close: 5