stale #977
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: stale | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '45 3 * * *' | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
id: stale | |
with: | |
stale-issue-label: stale | |
stale-pr-label: stale | |
stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. It will be automatically closed in 7 days.' | |
stale-pr-message: 'This pull request is stale because it has been open 14 days with no activity. It will be automatically closed in 7 days.' | |
days-before-stale: 14 | |
days-before-close: 7 | |
exempt-issue-labels: 'bug,enhancement' | |
exempt-pr-labels: 'bug,enhancement' |