From b5e1cfb919eea5369d9cf247d7e6609a75a2a630 Mon Sep 17 00:00:00 2001 From: William McLendon Date: Wed, 9 Dec 2020 10:26:37 -0700 Subject: [PATCH] Framework: Enabling the 'autocloser' github actions script --- .github/workflows/stale.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index abcc5d2cbd87..052e3cd4d873 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -21,19 +21,20 @@ jobs: steps: - uses: actions/stale@v3.0.14 with: - debug-only: true + debug-only: false ascending: true repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: 365 days-before-close: 30 stale-issue-label: 'MARKED_FOR_CLOSURE' + close-issue-label: 'CLOSED_DUE_TO_INACTIVITY' stale-pr-label: 'MARKED_FOR_CLOSURE' close-pr-label: 'CLOSED_DUE_TO_INACTIVITY' exempt-issue-labels: 'DO_NOT_AUTOCLOSE' # We specifically DO NOT exempt PR's from autoclosing. #exempt-pr-labels: '' remove-stale-when-updated: true - operations-per-run: 30 + operations-per-run: 100 stale-issue-message: > This issue has had no activity for **365** days and is marked for closure. It will be closed after an additional **30** days of inactivity.