/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/stale.yml
30 строк
737 B
Victor Stinner
gh-152785: Upgrade Ubuntu from 24.04 to 26.04 in GitHub Actions (#152717)
06 июл 2026, 18:44
Не верифицирован
06 июл 2026, 18:44
4c79929
Код
Авторство
О чём код?
name: Mark stale pull requests on: schedule: - cron: "0 */6 * * *" permissions: contents: read jobs: stale: if: github.repository_owner == 'python' runs-on: ubuntu-slim permissions: actions: write pull-requests: write timeout-minutes: 10 steps: - name: "Check PRs" uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-pr-message: 'This PR is stale because it has been open for 90 days with no activity.' stale-pr-label: 'stale' days-before-issue-stale: -1 days-before-pr-stale: 90 days-before-close: -1 ascending: true operations-per-run: 120