sing-box/.github/workflows/stale.yml

17 lines
462 B
YAML
Raw Permalink Normal View History

2022-08-25 10:24:11 +08:00
name: Mark stale issues and pull requests
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
2023-12-12 22:07:50 +08:00
- uses: actions/stale@v9
2022-08-25 10:24:11 +08:00
with:
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'
days-before-stale: 60
days-before-close: 5
exempt-issue-labels: 'bug,enhancement'