Retry workflow #1131
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Retry workflow | |
on: | |
workflow_dispatch: | |
inputs: | |
run_id: | |
description: 'The ID of the workflow run to rerun' | |
required: true | |
jobs: | |
rerun: | |
runs-on: ubuntu-latest | |
steps: | |
- name: rerun ${{ inputs.run_id }} | |
env: | |
GH_REPO: ${{ github.repository }} | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
gh run watch ${{ inputs.run_id }} > /dev/null 2>&1 | |
gh run rerun ${{ inputs.run_id }} --failed |