mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
25 lines
483 B
YAML
25 lines
483 B
YAML
name: Rerun
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
run_id:
|
|
required: true
|
|
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
|