Close stale issues #1321
This file contains 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 23 * * *' | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
permissions: | |
actions: write # For managing the operation state cache | |
issues: write # for actions/stale to close stale issues | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: '@MajkiIT To zgłoszenie zostało oznaczone jako nieaktualne, ponieważ nie było żadnej aktywności przez 90 dni. Usuń etykietę lub napisz komentarz, bo w przeciwnym wypadku zostanie ono zamknięte w ciągu 14 dni.' | |
stale-issue-label: 'odrzucone' | |
exempt-issue-labels: 'ToDo,do przemyślenia,dodać' | |
close-issue-message: 'To zgłoszenie zostało zamknięte, ponieważ minęło 14 dni odkąd została mu nadana etykieta i w tym czasie nie było żadnej aktywności.' | |
days-before-issue-stale: 90 | |
days-before-issue-close: 14 | |
operations-per-run: 60 |