Cancel redundant workflows #1636
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com> | |
# | |
# SPDX-License-Identifier: MIT | |
name: Cancel redundant workflows | |
on: | |
workflow_run: | |
workflows: | |
- "Builds" | |
- "Compliance" | |
- "Yocto Compatible" | |
types: | |
- requested | |
jobs: | |
cancel-redundant-workflows: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: styfle/cancel-workflow-action@0.10.0 | |
with: | |
all_but_latest: true | |
workflow_id: ${{ github.event.workflow.id }} |