Update stale.yml

Update config

Update .github/workflows/stale.yml

Co-Authored-By: Daniel Kirchner <daniel@ekpyron.org>
This commit is contained in:
Chris Chinchilla 2019-11-13 14:29:22 +01:00
parent c0cf96cbc1
commit c0dc82ced7

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

@ -0,0 +1,17 @@
name: Mark stale 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-pr-message: "A reminder that this pull request has had no activity for 30 days"
stale-pr-label: "no-pr-activity"
days-before-stale: 14