mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7704685458
This reverts commit 61ed1d810f
.
Reason: queued fast jobs for all CI runs on merged commits on master
after that PR.
https://cdn.discordapp.com/attachments/722442086984450159/870022126663520276/unknown.png
18 lines
636 B
YAML
18 lines
636 B
YAML
name: Cancel previous workflows
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Code CI", "Sanitized CI"] # the other workflows finish quickly - no need to skip them for now
|
|
types:
|
|
- requested
|
|
|
|
jobs:
|
|
cancel-previous-workflows:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: spaceface777/cancel-workflow-action@0.9.1
|
|
# don't cancel CI for commits pushed to vlang/v#master (if ci is still too slow, this can be removed safely)
|
|
if: ${{ github.event.workflow_run.head_repository.full_name != 'vlang/v' || github.event.workflow_run.head_branch != 'master' }}
|
|
with:
|
|
workflow_id: ${{ github.event.workflow.id }}
|