Mark stale issues and PRs #5
This file contains hidden or 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 PRs | |
| on: | |
| schedule: | |
| - cron: '0 8 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| stale-issue-message: 'This issue has had no activity for 60 days. It will be closed in 30 days unless there is new activity or a maintainer removes the stale label.' | |
| stale-pr-message: 'This PR has had no activity for 60 days. It will be closed in 30 days unless there is new activity or a maintainer removes the stale label.' | |
| close-issue-message: 'Closing due to inactivity. Please re-open if this is still relevant against the current version.' | |
| days-before-stale: 60 | |
| days-before-close: 30 | |
| stale-issue-label: 'status: stale' | |
| stale-pr-label: 'status: stale' | |
| exempt-issue-labels: 'priority: high' |