Create stale.yml

This commit is contained in:
Alex Collins 2021-03-31 10:32:57 -07:00 committed by GitHub
parent 3acd3f7682
commit ca3d8d376a
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: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
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'