Close Stale Pull Requests #163
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 Pull Requests | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Run every day at midnight | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
close_stale_prs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close stale pull requests | |
uses: actions/stale@v9 | |
with: | |
stale-issue-message: | | |
This issue has been automatically closed because it has been inactive for more than 60 days. | |
Please reopen if you still intend to submit this pull request. | |
days-before-stale: 60 | |
days-before-close: 7 | |
stale-pr-message: | | |
This pull request has been marked as stale because it has been inactive for more than 60 days. | |
Please update this pull request or it will be automatically closed in 7 days. | |
stale-pr-label: stale |