From 71b81e9867abea878831acce049b171b526f849d Mon Sep 17 00:00:00 2001 From: Kendell R Date: Sat, 25 Dec 2021 09:52:31 -0800 Subject: [PATCH] Add stale issue checker --- .github/actions/stale.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/actions/stale.yaml diff --git a/.github/actions/stale.yaml b/.github/actions/stale.yaml new file mode 100644 index 00000000..1c87b981 --- /dev/null +++ b/.github/actions/stale.yaml @@ -0,0 +1,20 @@ +name: "Close stale issues / pull requests" +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + stale-issue-message: | + This issue has been open for a while. It will be closed soon if nobody comments on it. + Issues should be closed if: + - They are duplicates of other issues + - There is not enough demand + - They are no longer relevant + - There are not enough details + days-before-stale: 30 + days-before-close: 30