1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-15 04:42:02 +00:00
openmptcprouter/.github/workflows/stale.yml

21 lines
733 B
YAML
Raw Normal View History

2020-09-08 18:06:28 +00:00
name: Mark stale issues and pull requests
on:
2020-09-08 19:11:19 +00:00
push:
2020-09-08 18:06:28 +00:00
schedule:
2020-09-08 18:16:26 +00:00
- cron: "0 19 * * *"
2020-09-08 18:06:28 +00:00
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3.0.10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days"
stale-pr-message: 'It has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-stale: 90
2020-09-08 18:06:28 +00:00
days-before-close: 5
exempt-issue-labels: 'work-in-progress,enhancement'
exempt-pr-labels: 'work-in-progress,enhancement'