Mark stale issues and pull requests #39075
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: Mark stale issues and pull requests | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has had no activity in 90 days. Please comment if it is not actually stale' | |
stale-issue-label: 'stale' | |
days-before-stale: 90 | |
days-before-close: 7 | |
exempt-pr-label: 'no-stale' |