Mark and close stale issues #61
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 and close stale issues | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: {} | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f | |
| with: | |
| # Issues: mark after 90 days of inactivity, close after 90 more days | |
| days-before-issue-stale: 90 | |
| days-before-issue-close: 90 | |
| stale-issue-label: lifecycle/stale | |
| stale-pr-label: lifecycle/stale | |
| stale-issue-message: >- | |
| This issue has been automatically marked as stale because it has not had recent activity. | |
| It will be closed in 90 days if no further activity occurs. If this is still relevant, | |
| please add a comment to keep it open. | |
| close-issue-message: >- | |
| Closing this issue due to prolonged inactivity after being marked as stale. If this remains | |
| an active concern, feel free to reopen or create a new issue with updated details. | |
| close-issue-label: lifecycle/auto-closed | |
| # PRs: disable stale for PRs (start conservatively) | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 | |
| # Exemptions and behavior | |
| exempt-issue-labels: >- | |
| security,bug,enhancement,good first issue,help wanted, | |
| lifecycle/frozen | |
| exempt-pr-labels: >- | |
| security,lifecycle/frozen | |
| exempt-all-assignees: true |