Stale PR Handler #106
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
# Automatically mark any pull requests that have been inactive for 30 days as "Stale" | |
# then close them 3 days later if there is still no activity. | |
# | |
name: "Stale PR Handler" | |
on: | |
schedule: | |
# Check for Stale PRs every Monday to Thursday morning | |
# Don't check on Fridays as it wouldn't be very nice to have a bot mark your PR as Stale on Friday and then close it on Monday morning! | |
- cron: "0 6 * * MON-THU" | |
permissions: | |
pull-requests: write | |
jobs: | |
stale: | |
uses: wellcomecollection/.github/.github/workflows/stale.yml@main |