Close stale issues and PRs #111
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: | |
schedule: | |
- cron: '30 12 * * *' | |
workflow_dispatch: | |
permissions: | |
issues: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: 'This issue is now marked as stale because it has not received any updates since 2 years. Add any relevant comment to stop the stale process or this will be closed in 30 days. All feedbacks are welcome!' | |
days-before-stale: 730 | |
days-before-close: 30 | |
exempt-all-milestones: true |