From eca69af9f77de08238ecf95d4998eedb3a9c8eaa Mon Sep 17 00:00:00 2001 From: Robert Kieffer Date: Mon, 16 Jan 2023 07:59:24 -0800 Subject: [PATCH] chore: enable stale-exempt label (#679) --- .github/workflows/stale-issues.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index e84d1551..de16bd49 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -1,7 +1,7 @@ name: Close inactive issues on: schedule: - - cron: "45 2 * * *" + - cron: '45 2 * * *' jobs: close-issues: @@ -12,11 +12,13 @@ jobs: steps: - uses: actions/stale@v5 with: - days-before-issue-stale: 90 + close-issue-message: 'Closing issue due to 30 days since being marked as stale.' days-before-issue-close: 30 - stale-issue-label: "stale" - stale-issue-message: "Marking as stale due to 90 days with no activity." - close-issue-message: "Closing issue due to 30 days since being marked as stale." - days-before-pr-stale: -1 + days-before-issue-stale: 90 days-before-pr-close: -1 + days-before-pr-stale: -1 + exempt-issue-labels: ['stale-exempt'] + exempt-pr-labels: ['stale-exempt'] repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-label: 'stale' + stale-issue-message: 'Marking as stale due to 90 days with no activity.'