clash/.github/workflows/stale.yml

19 lines
418 B
YAML
Raw Normal View History

2020-07-09 02:27:05 +00:00
name: Mark stale issues and pull requests
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
2022-03-06 13:48:25 +00:00
- uses: actions/stale@v5
2020-07-09 02:27:05 +00:00
with:
2020-10-25 03:53:03 +00:00
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 5 days'
2020-10-22 16:30:17 +00:00
days-before-stale: 60
2020-07-09 02:27:05 +00:00
days-before-close: 5