Skip to content

Re-run Workflow

Re-run Workflow #4249

name: Re-run Workflow
on:
workflow_run:
workflows:
- CI
types:
- completed
pull_request_target:
types:
- closed
- labeled
- unlabeled
schedule:
- cron: '0 */3 * * *' # every 3 hours
jobs:
rerun-workflow:
if: >
startsWith(github.repository, 'Homebrew/') &&
(
github.event.label.name == 'ci-requeue' ||
github.event.label.name == 'ci-retry' ||
github.event.label.name == 'ci-skip-appcast' ||
github.event.label.name == 'ci-skip-install' ||
github.event.label.name == 'ci-syntax-only' ||
!github.event.label.name
)
runs-on: ubuntu-latest
steps:
- name: Re-run CI workflow
uses: reitermarkus/rerun-workflow@64cba9e834916060e77b7dad424d086837fdd0a6
with:
token: ${{ secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN }}
once-label: ci-requeue
continuous-label: ci-retry
trigger-labels: ci-skip-appcast,ci-skip-install,ci-syntax-only
workflow: ci.yml