/
githubmirror
/
gorm
Обзор
Документация
Войти
/
githubmirror
/
gorm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/stale.yml
28 строк
972 B
dependabot[bot]
chore(deps): bump actions/stale from 7 to 8 (#6190)
11 апр 2023, 05:27
Не верифицирован
11 апр 2023, 05:27
1d9f4b0
Код
Авторство
О чём код?
name: "Stale" on: schedule: - cron: "0 2 * * *" 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 runs-on: ubuntu-latest env: ACTIONS_STEP_DEBUG: true steps: - name: Close Stale Issues uses: actions/stale@v8 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: "This issue has been automatically marked as stale because it has been open 360 days with no activity. Remove stale label or comment or this will be closed in 180 days" days-before-stale: 360 days-before-close: 180 stale-issue-label: "status:stale" exempt-issue-labels: 'type:feature,type:with reproduction steps,type:has pull request' stale-pr-label: 'status:stale' exempt-pr-labels: 'type:feature,type:with reproduction steps,type:has pull request'