From 4d1e3e2586564f84bbddefca77593e2fc08f0c69 Mon Sep 17 00:00:00 2001 From: Cretezy Date: Wed, 26 Jun 2024 18:11:16 -0400 Subject: [PATCH] Change stale days from 30 to 90 --- .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 60c6ae5e..d7febfcb 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -13,12 +13,12 @@ jobs: steps: - uses: actions/stale@v5 with: - 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-pr-message: 'This PR was closed because it has been stalled for 5 days with no activity.' - 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.' - close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.' - days-before-stale: 30 - days-before-close: 5 + stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days.' + close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.' + stale-issue-message: 'This issue is stale because it has been open 90 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.' + days-before-stale: 90 + days-before-close: 7 exempt-issue-labels: 'feature ☘,enhancement ⚙,bug 🐞' exempt-pr-labels: 'need-help,wip' - operations-per-run: 100 \ No newline at end of file + operations-per-run: 100