cancel-redundant-workflows.yml 484 B

1234567891011121314151617181920212223
  1. # SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com>
  2. #
  3. # SPDX-License-Identifier: MIT
  4. name: Cancel redundant workflows
  5. on:
  6. workflow_run:
  7. workflows:
  8. - "Builds"
  9. - "Compliance"
  10. - "Yocto Compatible"
  11. types:
  12. - requested
  13. jobs:
  14. cancel-redundant-workflows:
  15. runs-on: ubuntu-latest
  16. steps:
  17. - uses: styfle/cancel-workflow-action@0.10.0
  18. with:
  19. all_but_latest: true
  20. workflow_id: ${{ github.event.workflow.id }}