mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
20 lines
482 B
YAML
20 lines
482 B
YAML
name: Cancel
|
|
|
|
env:
|
|
# Force the stdout and stderr streams to be unbuffered
|
|
PYTHONUNBUFFERED: 1
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
workflow_run:
|
|
workflows: ["PullRequestCI", "ReleaseBranchCI", "DocsCheck", "BackportPR"]
|
|
types:
|
|
- requested
|
|
jobs:
|
|
cancel:
|
|
runs-on: [self-hosted, style-checker]
|
|
steps:
|
|
- uses: styfle/cancel-workflow-action@0.9.1
|
|
with:
|
|
all_but_latest: true
|
|
workflow_id: ${{ github.event.workflow.id }}
|