Add stale action

This commit is contained in:
John Molakvoæ 2019-09-10 13:06:39 +02:00 committed by GitHub
parent 242ed6bb0b
commit 0a28631dfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

30
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Close stale issues
on:
issues:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity and seems to be missing some essential information.
It will be closed if no further activity occurs. Thank you
for your contributions.
stale-issue-label: 'stale'
exempt-issue-label:
- 1. to develop
- 2. developing
- 3. to review
- 4. to release
- security
days-before-stale: 30
days-before-close: 14