From 75a0e222ae043795b3b8edf586c4128f5aadf728 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 26 Jan 2022 15:54:01 -0800 Subject: [PATCH] Add a 90d/5d stale action --- .github/workflows/stale.yml | 13 +++++++++++++ 1 file changed, 13 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 0000000..0bea4de --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,13 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '42 4 * * *' +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days.' + days-before-stale: 90 + days-before-close: 7