mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
18 lines
414 B
YAML
18 lines
414 B
YAML
name: Retry workflow
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
run_id:
|
|
required: true
|
|
jobs:
|
|
rerun:
|
|
runs-on: ubuntu-24.04
|
|
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 |