Skip to content

Re-run faild deploy

Re-run faild deploy #8

Workflow file for this run

name: Re-run faild deploy
on:
workflow_dispatch:
inputs:
run_id:
required: true
jobs:
re-run:
runs-on: ubuntu-latest
steps:
- name: rerun ${{ inputs.run_id }}
env:
GH_REPO: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}
GH_DEBUG: api
run: |
gh run watch ${{ inputs.run_id }} > /dev/null 2>&1
gh run rerun ${{ inputs.run_id }} --failed