This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
Close stale PRs #255
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 PRs' | |
on: | |
schedule: | |
- cron: '30 6 * * *' # 6:30 am UTC: 1:30 am EST | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
days-before-stale: 30 | |
days-before-close: 30 | |
stale-pr-message: > | |
This issue has been automatically marked as stale because it has not had | |
recent activity. It will be closed if no further activity occurs. | |
close-pr-message: > | |
This issue has been automatically closed because it has had no activity | |
for over 90 days. Please re-open if you feel this was done in error. | |
exempt-pr-labels: 'dependabot,depfu,dependencies,security' |