Close stale issues #75
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: | |
| # Every day at 08:00 Oslo (CEST) / 07:00 Oslo (CET) — 06:00 UTC | |
| - cron: '0 6 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| only-labels: 'issue needs work' | |
| days-before-issue-stale: 3 | |
| days-before-issue-close: 0 | |
| remove-issue-stale-when-updated: true | |
| exempt-all-assignees: true | |
| # Same as only-labels — keeps the existing label in place rather than adding the default "Stale" | |
| stale-issue-label: 'issue needs work' | |
| stale-issue-message: '' | |
| close-issue-message: | | |
| Closing this issue because the requested information was not provided within 3 days. | |
| If you'd like to continue, please reopen the issue and add the missing details (or comment here and a maintainer can reopen it for you). | |
| # PRs are not handled by this workflow | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 |