From 4cff9013e7f6966b65492d152c4b0051765c54f3 Mon Sep 17 00:00:00 2001 From: Ellis Tarn Date: Tue, 1 Mar 2022 10:26:55 -0800 Subject: [PATCH] Don't close bugs as stale (#1441) --- .github/workflows/issues.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/issues.yaml b/.github/workflows/issues.yaml index 3649da11e4e5..f311af9e9c8e 100644 --- a/.github/workflows/issues.yaml +++ b/.github/workflows/issues.yaml @@ -10,13 +10,13 @@ jobs: - uses: actions/stale@v4 with: stale-issue-message: 'This issue is stale because it has been open 25 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.' - exempt-issue-labels: 'roadmap,help-wanted,burning,feature,documentation,operational-excellence' + close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' + exempt-issue-labels: 'roadmap,help-wanted,burning,bug,feature,documentation,operational-excellence' stale-issue-label: 'stale' days-before-issue-stale: 25 - days-before-issue-close: 5 + days-before-issue-close: 10 stale-pr-message: 'This PR is stale because it has been open 25 days with no activity. Remove stale label or comment or this will be closed in 10 days.' - close-pr-message: 'This PR 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.' stale-pr-label: 'stale' days-before-pr-stale: 25 - days-before-pr-close: 5 + days-before-pr-close: 10