Close stale issues #122
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: Close stale issues | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| stale-issue-message: > | |
| This issue has been inactive for 30 days. It will be closed in 7 days | |
| unless there is further activity. | |
| close-issue-message: > | |
| Closed due to 30 days of inactivity. Please reopen if this is still relevant. | |
| days-before-issue-stale: 30 | |
| days-before-issue-close: 7 | |
| stale-issue-label: stale | |
| exempt-issue-labels: pinned,security,in-progress | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 |