Close inactive issues and PRs #610
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 inactive issues and PRs' | |
on: | |
schedule: | |
- cron: '0 10 * * *' # every day at 10:00 | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
days-before-issue-stale: -1 | |
days-before-issue-close: 14 | |
stale-issue-label: 'issue-needs-more-info' | |
close-issue-message: 'Задача закрыта из-за отсутствия активности в течение последних 14 дней. Если это произошло по ошибке или проблема все ещё актуальна, откройте задачу повторно.' | |
days-before-pr-stale: 7 | |
days-before-pr-close: 7 | |
stale-pr-label: 'pr-needs-work' | |
close-pr-message: 'PR закрыт из-за отсутствия активности в течение последних 14 дней. Если это произошло по ошибке или изменения все ещё актуальны, откройте PR повторно.' | |
exempt-pr-labels: 'no-stale' | |
repo-token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} |