Create stale.yml

This commit is contained in:
Shohei Ueda 2019-12-05 17:06:35 +09:00 committed by GitHub
parent bc06efb2e0
commit c5ea31b9d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

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

@ -0,0 +1,16 @@
name: "Close stale issues"
on:
schedule:
- cron: "6 6 * * *"
jobs:
stale:
runs-on: ubuntu-18.04
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
days-before-stale: 21
days-before-close: 7