mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
c7010bbaaa
* refactor: update ci and package * chore: fix tests
20 lines
538 B
YAML
20 lines
538 B
YAML
# From this genius: https://github.com/orgs/community/discussions/67654#discussioncomment-8038649
|
|
name: Rerun workflow
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
run_id:
|
|
required: true
|
|
jobs:
|
|
rerun:
|
|
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
|