Cancel #1038
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
# https://github.com/styfle/cancel-workflow-action | |
name: Cancel | |
on: | |
workflow_run: | |
workflows: ["Continuous Benchmarks (Comment)", "Continuous Benchmarks (Receive)", "code-coverage", "pkgdown", "R-CMD-check"] # list by name as in `name:` of the workflow file | |
types: | |
- requested | |
jobs: | |
cancel: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: styfle/cancel-workflow-action@0.9.1 | |
with: | |
workflow_id: ${{ github.event.workflow.id }} |