act/.github/workflows/stale.yml

24 lines
714 B
YAML
Raw Normal View History

2020-02-28 11:35:29 -06:00
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
name: Stale
2020-02-28 11:35:29 -06:00
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
2020-02-28 11:35:29 -06:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity'
stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity'
stale-issue-label: 'stale'
exempt-issue-labels: 'stale-exempt'
stale-pr-label: 'stale'
exempt-pr-labels: 'stale-exempt'
2020-11-08 10:23:53 -06:00
remove-stale-when-updated: 'True'
2020-11-08 10:31:19 -06:00
operations-per-run: 500
days-before-stale: 30
days-before-close: 14