/
githubmirror
/
compose
Обзор
Документация
Войти
/
githubmirror
/
compose
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/stale.yml
27 строк
906 B
dependabot[bot]
build(deps): bump actions/stale from 10.4.0 to 11.0.0
03 авг 2026, 13:02
03 авг 2026, 13:02
b7c346a
Код
Авторство
О чём код?
name: 'Close stale issues' permissions: contents: read on: schedule: - cron: '0 0 * * 0,3' # at midnight UTC every Sunday and Wednesday jobs: stale: runs-on: ubuntu-latest permissions: issues: write pull-requests: write steps: - uses: actions/stale@4391f3da665fdf50b6810c1a66712fb9ba21aa93 # v11.0.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. days-before-issue-stale: 150 # marks stale after 5 months days-before-issue-close: 30 # closes 1 month after being marked with no action stale-issue-label: "stale" exempt-issue-labels: "kind/feature,kind/enhancement"