Rerun Workflows
ActionsUsed to automatically rerun workflows if they were cancelled. Used to help the issue with concurrency
v1
LatestBy synergy-au
Tags
(2)Used to rerun workflows based on the conclusion of the workflow (e.g. cancelled workflows). This can be used to resolve issues such as GitHub cancelling workflow runs that are pending.
name: Rerun Cancelled Workflows
on:
workflow_dispatch:
schedule:
- cron: '*/20 6-20 * * *'
jobs:
rerun-workflows:
name: Rerun Cancelled Workflows
runs-on: ubuntu-latest
steps:
- name: Rerun Cancelled Workflows
uses: synergy-au/rerun-workflows-action@v1
with:
auth-token: ${{ secrets.GITHUB_TOKEN }}
Rerun Workflows is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.