solidity/.github/workflows/stale.yml
Chris Chinchilla 65f3661d34
Update .github/workflows/stale.yml
Co-Authored-By: chriseth <chris@ethereum.org>
2019-11-19 11:11:06 +01:00

18 lines
393 B
YAML

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 14 days"
stale-pr-label: "no-pr-activity"
days-before-stale: 14