Skip to content

Cancel

Cancel #10038

Workflow file for this run

name: Cancel # Reduces overall build times by cancelling incomplete jobs
on:
workflow_run:
workflows: ["CI"]
types:
- requested
jobs:
cancel:
runs-on: ubuntu-latest
steps:
- name: Cancel incomplete runs except the latest
uses: styfle/cancel-workflow-action@0.9.1 # cspell:disable-line
with:
all_but_latest: true
workflow_id: ${{ github.event.workflow.id }}