0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 01:12:13 +02:00

Add stale issue checker

This commit is contained in:
Kendell R 2021-12-25 09:52:31 -08:00 committed by GitHub
parent 6c0ce81227
commit 71b81e9867
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.github/actions/stale.yaml vendored Normal file
View File

@ -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