Close stale issues #23
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: "30 1 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 14 | |
| days-before-close: 14 | |
| stale-issue-label: "stale" | |
| exempt-issue-labels: "pinned" | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 | |
| stale-issue-message: > | |
| This issue has been inactive for 14 days and is now marked stale. | |
| It will close in 14 days without further activity. Comment to keep it open. | |
| close-issue-message: > | |
| Closing due to inactivity. Reopen if it is still relevant. |