Close stale issues and PRs #47
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 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v4 | |
with: | |
stale-issue-message: "Detected no activity for this issue in the last 60 days. The issue will be closed in 7 days if no further activity occurs." | |
stale-pr-message: "Detected no activity for this Pull Request in the last 60 days. The Pull Request will be closed in 7 days if no further activity occurs." | |
exempt-all-issue-assignees: true |