/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/retry-workflow.yml
20 строк
522 B
Rob Hogan
Apply prettier to .yml files + consistent quote style (#57286)
19 июн 2026, 17:03
19 июн 2026, 17:03
738839c
Код
Авторство
О чём код?
name: Retry workflow # Based on https://stackoverflow.com/a/78314483 on: workflow_dispatch: inputs: run_id: required: true jobs: rerun: runs-on: ubuntu-latest if: github.repository == 'react/react-native' steps: - name: rerun ${{ inputs.run_id }} env: GH_REPO: ${{ github.repository }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh run watch ${{ inputs.run_id }} > /dev/null 2>&1 gh run rerun ${{ inputs.run_id }} --failed