/
githubmirror
/
setools
Обзор
Документация
Войти
/
githubmirror
/
setools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/stale.yml
22 строки
711 B
Chris PeBenito
tests.yml: Refactor setools build into a new custom GitHub action.
04 июн 2026, 20:42
Не верифицирован
04 июн 2026, 20:42
efbc59f
Код
Авторство
О чём код?
name: Mark stale issues and pull requests on: schedule: - cron: "30 1 * * *" jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v9 with: stale-issue-message: 'This issue has not had any recent activity. It will be closed in 7 days if it makes no further progress.' close-issue-message: 'Closing stale PR.' stale-pr-message: 'This PR has not had any recent activity. It will be closed in 7 days if it makes no further progress.' close-pr-message: 'Closing stale PR.' stale-issue-label: 'stale' stale-pr-label: 'stale' exempt-issue-labels: 'question,help wanted' exempt-pr-labels: 'question,external bug'