Close stale issues and PRs #565
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Close stale issues and PRs' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: 'Issue is marked as stale since there has been no activity for two weeks. It will be automatically closed in 5 days.' | |
days-before-stale: 14 | |
days-before-close: 5 | |
exempt-issue-labels: 'bug,enhancement' |