From e427e2da051f026ea8b00190b4d0305d0be732ae Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 21 Oct 2024 10:37:43 -0700 Subject: [PATCH] do not stale prs --- .github/workflows/close-stale.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/close-stale.yml b/.github/workflows/close-stale.yml index 4b7e68d32..7a35a37c9 100644 --- a/.github/workflows/close-stale.yml +++ b/.github/workflows/close-stale.yml @@ -11,13 +11,11 @@ jobs: - uses: actions/stale@v9 with: stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.' - stale-pr-message: 'This PR is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.' close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' - close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.' days-before-stale: 14 days-before-close: 7 stale-issue-label: 'stale' stale-pr-label: 'stale' - only-label: 'question' - exempt-issue-labels: 'pinned,security' - exempt-pr-labels: 'pinned,security' + only-labels: 'question' + days-before-pr-stale: -1 + days-before-pr-close: -1