/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
.github/workflows/inactive-issues.yml
24 строки
603 B
dependabot[bot]
chore(deps): bump actions/github-script from 8 to 9
20 апр 2026, 19:48
Не верифицирован
20 апр 2026, 19:48
809fd36
Код
Авторство
О чём код?
name: Inactive Issues Management on: schedule: # “At 01:00 on Saturday.” - cron: '0 1 * * 6' # Allows to run this workflow manually from the Actions tab workflow_dispatch: jobs: manage-inactive-issues: runs-on: ubuntu-latest permissions: issues: write steps: - name: Checkout Repository uses: actions/checkout@v3 - name: Manage inactive issues uses: actions/github-script@v9 with: script: | const script = require('./.github/scripts/inactive-issues.js') await script({github, context})