Cancel a running workflow

## Usage

`circleci workflow cancel <workflow-id> [flags]`

## Arguments

`<workflow-id>` is the UUID of the workflow to cancel. Workflow IDs are
shown in the output of `circleci run get`.

## Flags

| Flag          | Description              |
| ------------- | ------------------------ |
| `-f, --force` | skip confirmation prompt |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Cancel a running workflow (with confirmation): 
  `circleci workflow cancel 5034460f-c7c4-4c43-9457-de07e2029e7b`
- Cancel without confirmation: 
  `circleci workflow cancel 5034460f-c7c4-4c43-9457-de07e2029e7b --force`
- Find a running workflow ID from the latest run and cancel it: 
  `circleci run get --json --jq '.workflows[] | select(.status=="running") | .id' | xargs circleci workflow cancel --force`

## Details

Cancel a running CircleCI workflow.

Any in-progress jobs will be stopped. Jobs that have already
completed are not affected.

Workflow IDs are shown in the output of 'circleci run get'.

