Close stale issues and PR #662
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 PR | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v5 | |
with: | |
days-before-stale: 90 | |
days-before-close: 30 | |
days-before-pr-close: -1 | |
stale-issue-message: | | |
This issue had no activity for more than 90 days. Labelling as stale. | |
It'll be automatically closed withing 30 days of no activity. |