/
githubmirror
/
certbot
Обзор
Документация
Войти
/
githubmirror
/
certbot
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/rerun.yml
27 строк
628 B
ohemorange
Migrate nightly test pipeline from azure pipelines to github actions (#10634)
18 май 2026, 20:56
Не верифицирован
18 май 2026, 20:56
1efd73e
Код
Авторство
О чём код?
# based on https://github.com/orgs/community/discussions/67654#discussioncomment-8038649 name: Rerun on: workflow_dispatch: inputs: run_id: required: true description: github.run_id of workflow to rerun permissions: actions: write checks: write env: RUN_ID: "${{ inputs.run_id }}" jobs: rerun: runs-on: ubuntu-latest steps: - name: rerun "$RUN_ID" env: GH_REPO: ${{ github.repository }} GH_TOKEN: ${{ github.token }} GH_DEBUG: api run: | gh run watch "$RUN_ID" > /dev/null 2>&1 gh run rerun "$RUN_ID" --failed