Close stale issues and pull requests #919
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 pull requests" | |
on: | |
schedule: | |
- cron: "12 2 * * *" # arbitrary time not to DDOS GitHub | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-pr-message: 'This PR was marked stale due to lack of activity. It will be closed in 14 days.' | |
close-pr-message: 'Closed as inactive. Feel free to reopen if this PR is still being worked on.' | |
days-before-pr-stale: 14 | |
days-before-issue-stale: 730 | |
days-before-pr-close: 14 | |
days-before-issue-close: 30 |