car-detection-bayes/.github/workflows/stale.yml

18 lines
640 B
YAML
Raw Normal View History

2020-03-06 01:08:14 +00:00
name: Close stale issues
2020-03-05 21:22:10 +00:00
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
2020-03-05 21:26:48 +00:00
- uses: actions/stale@v1
2020-03-05 21:22:10 +00:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2020-03-06 01:08:14 +00:00
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove Stale label or comment or this will be closed in 5 days.'
stale-pr-message: 'This pull request is stale because it has been open 30 days with no activity. Remove Stale label or comment or this will be closed in 5 days.'
2020-03-05 21:26:48 +00:00
days-before-stale: 30
days-before-close: 5
2020-03-05 21:48:29 +00:00
exempt-issue-label: 'tutorial'