Adding stale workflow

Adding stale workflow
This commit is contained in:
Brian Christner 2019-08-22 09:40:34 +02:00 committed by GitHub
parent b23e76f563
commit 841e4bc104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

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

@ -0,0 +1,17 @@
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has seen no activity and is marked as stale'
stale-pr-message: 'This issue has seen no activity and is marked as stale'