Label stale issues and PRs #728
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: 'Label stale issues and PRs' | |
on: | |
schedule: | |
- cron: '30 2 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity.' | |
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity.' | |
days-before-stale: 90 | |
days-before-close: -1 |