From 4293959e3a2c7d02e30c37f3e399fce94d25c54f Mon Sep 17 00:00:00 2001 From: Ircama Date: Thu, 19 Sep 2024 05:27:34 +0200 Subject: [PATCH] Use version 9 of the stale workflow --- .github/workflows/stale.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index a9b2abd..b6eebe6 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,14 +13,14 @@ jobs: pull-requests: write steps: - - uses: actions/stale@v4 # https://github.com/actions/stale + - uses: actions/stale@v9 # https://github.com/actions/stale with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue becomed stale because of no feedback for 30 days. Remove the stale label or add a comment; otherwise, this will be automatically closed in 60 days.' - stale-pr-message: 'This PR becomed stale because of no feedback for 60 days.' - days-before-stale: 30 - days-before-close: 60 - close-issue-message: 'This issue was closed because it has been stalled for 60 days with no activity.' + stale-issue-message: 'This issue becomed stale because of no feedback for 15 days. Remove the stale label or add a comment; otherwise, this will be automatically closed in 30 days.' + stale-pr-message: 'This PR becomed stale because of no feedback for 30 days.' + days-before-stale: 15 + days-before-close: 30 + close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity.' days-before-pr-close: -1 - any-of-labels: answered,needs-rebase,inactive,Awaiting-Response,question,invalid,duplicate,wontfix + any-of-labels: answered,needs-rebase,inactive,Awaiting-Response,question,invalid,duplicate,wontfix,comment exempt-all-pr-assignees: true