Revert "ci: minor optimization in the cancel workflow (#10978)"

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
pull/10986/head^2
Delyan Angelov 2021-07-28 22:18:54 +03:00
parent d25bd95a0e
commit 7704685458
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@ name: Cancel previous workflows
on:
workflow_run:
workflows: ["Code CI"]
workflows: ["Code CI", "Sanitized CI"] # the other workflows finish quickly - no need to skip them for now
types:
- requested
@ -14,5 +14,4 @@ jobs:
# 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 ids for `Code CI` and `Sanitized CI` (from https://api.github.com/repos/vlang/v/actions/workflows):
workflow_id: 4577,7940868 # the other workflows finish quickly - no need to skip them
workflow_id: ${{ github.event.workflow.id }}