Create stale.yml

This commit is contained in:
Benjamin Sergeant 2020-04-06 11:20:01 -07:00 committed by GitHub
parent f9d75c9374
commit 2eb5c9480e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,19 @@
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'