From 74fbd986a9544d242725bd58e781fb4172013898 Mon Sep 17 00:00:00 2001 From: jworman <66142217+hc-jworman@users.noreply.github.com> Date: Wed, 23 Feb 2022 19:07:47 -0600 Subject: [PATCH] Create stale.yml --- .github/workflows/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..6ff95830d --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +name: Stale issue handler +on: + schedule: + - cron: 0 0 * * * + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@4.1.0 + id: stale + with: + stale-issue-message: This issue is stale because it has been open 30 days with no activity. Remove stale label or comment, or this will be closed in 7 days. + days-before-stale: 30 + days-before-close: 7 + exempt-issue-labels: keep