Close stale issues and PR #564
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 * * * | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-pr-message: This pull request will be closed in 14 days due to six months of inactivity unless the stale label or comment is removed. | |
close-pr-message: This pull request was closed because it has had no activity for the past six months. | |
days-before-pr-stale: 180 | |
days-before-pr-close: 15 | |
# never close issues | |
days-before-close: -1 |