Create stale.yml

This commit is contained in:
Glenn Jocher 2020-03-05 13:22:10 -08:00 committed by GitHub
parent 1dc1761f45
commit e2f235cf1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

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

@ -0,0 +1,21 @@
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@1.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue appears stale as no activity has been seen for some time. We will close this issue in the next few days.'
stale-pr-message: 'This PR appears stale as no activity has been seen for some time. We will close this PR in the next few days.'
stale-issue-label: 'Stale'
stale-pr-label: 'Stale'
days-before-stale: 10
days-before-close: 3