From 55f83eb9e13408639043aafa9d2f376fa25c1830 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Fri, 29 Dec 2023 00:07:53 +0100 Subject: [PATCH] Close unresponsive tickets earlier (#6830) --- .github/workflows/close-if-no-reply.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/close-if-no-reply.yml b/.github/workflows/close-if-no-reply.yml index ba4903a7f..1c02efce0 100644 --- a/.github/workflows/close-if-no-reply.yml +++ b/.github/workflows/close-if-no-reply.yml @@ -13,15 +13,15 @@ jobs: steps: - uses: actions/stale@v5 with: - days-before-stale: 15 - days-before-close: 15 + days-before-stale: 7 + days-before-close: 7 only-labels: 'Awaiting reply' stale-issue-label: 'Still awaiting reply' stale-pr-label: 'Still awaiting reply' - stale-issue-message: "This issue will be closed when we don't get a reply within 15 days." - stale-pr-message: "This PR will be closed when we don't get a reply within 15 days." + stale-issue-message: "This issue will be closed when we don't get a reply within 7 days." + stale-pr-message: "This PR will be closed when we don't get a reply within 7 days." labels-to-remove-when-unstale: 'Awaiting reply' close-issue-label: "Close reason: no reply" close-pr-label: "Close reason: no reply" - close-issue-message: "This issue was closed because we didn't get a reply for 30 days." - close-pr-message: "This PR was closed because we didn't get a reply for 30 days." + close-issue-message: "This issue was closed because we didn't get a reply for 14 days." + close-pr-message: "This PR was closed because we didn't get a reply for 14 days."