From d5e22a8bd6959997a4c4e87d366c60c1042fb72c Mon Sep 17 00:00:00 2001 From: Jacob Bandes-Storch Date: Mon, 1 Aug 2022 18:22:43 -0700 Subject: [PATCH] Close stale issues as not planned (#3847) **User-Facing Changes** None **Description** Uses https://github.com/actions/stale/pull/764 to close issues as not planned instead of completed --- .github/workflows/stale.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 5191165303..3c5e10ded3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,12 +11,13 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v5 + - uses: actions/stale@v5.1.1 with: stale-issue-message: "This issue has been marked as stale because there has been no activity in the past 12 months. Please add a comment to keep it open." stale-issue-label: stale days-before-issue-stale: 365 days-before-issue-close: 30 + close-issue-reason: not_planned stale-pr-message: "This PR has been marked as stale because there has been no activity in the past 3 months. Please add a comment to keep it open." stale-pr-label: stale