/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/close-stalled.yml
36 строк
1 KB
dependabot[bot]
meta: bump actions/stale from 10.3.0 to 11.0.0
03 авг 2026, 22:00
Не верифицирован
03 авг 2026, 22:00
4cc0ced
Код
Авторство
О чём код?
name: Close stalled issues and PRs on: schedule: - cron: 0 0 * * * env: CLOSE_MESSAGE: > Closing this because it has stalled. Feel free to reopen if this issue/PR is still relevant, or to ping the collaborator who labelled it stalled if you have any questions. permissions: contents: read jobs: stale: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs if: github.repository == 'nodejs/node' runs-on: ubuntu-slim steps: - uses: actions/stale@4391f3da665fdf50b6810c1a66712fb9ba21aa93 # v11.0.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-close: 30 stale-pr-label: stalled stale-issue-label: stalled close-issue-message: ${{ env.CLOSE_MESSAGE }} close-pr-message: ${{ env.CLOSE_MESSAGE }} # used to filter issues to check whether or not should be closed, avoids hitting maximum operations allowed if needing to paginate through all open issues only-labels: stalled # max requests it will send per run to the GitHub API before it deliberately exits to avoid hitting API rate limits operations-per-run: 500 # deactivates automatic stale labelling as we prefer to do that manually days-before-stale: -1