Tag stale PRs #470
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: 'Tag stale PRs' | |
permissions: | |
issues: write | |
pull-requests: write | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
days-before-stale: 7 | |
days-before-close: -1 | |
stale-pr-message: "This PR has seen no activity in the last 7 days and has been marked as stale." |