memos/.github/workflows/stale.yml

18 lines
284 B
YAML
Raw Normal View History

2024-01-18 16:18:18 +08:00
name: Close Stale Issues
on:
schedule:
2024-02-29 09:21:55 +08:00
- cron: "0 */8 * * *"
2024-01-18 16:18:18 +08:00
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9.0.0
with:
days-before-issue-stale: 14
2024-02-29 09:21:55 +08:00
days-before-issue-close: 7