From a0f5bb5ed5026b7aafe8e72ee6fd08e1bf55985e Mon Sep 17 00:00:00 2001 From: xchapter7x Date: Thu, 2 Apr 2020 11:48:52 -0400 Subject: [PATCH] no auto-close on stale issues/prs uses the exempt flag to ignore issues already marked stale. this will allow us to auto label stale, and then ignore them so they do not get auto closed. --- .github/workflows/stale.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index dde00487..890ed012 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -17,3 +17,5 @@ jobs: stale-pr-message: 'This PR is being marked as stale due to a long period of inactivity' stale-issue-label: 'kind/stale' stale-pr-label: 'kind/stale' + exempt-issue-label: 'kind/stale' + exempt-pr-label: 'kind/stale'