Close stale issues #62
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 * * *' # daily at midnight UTC | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 5 | |
| days-before-close: 0 | |
| stale-issue-message: "Closing — no response for 5 days. Feel free to reopen if you still need help!" | |
| stale-issue-label: stale | |
| exempt-issue-labels: pinned | |
| only-labels: '' | |
| operations-per-run: 30 |