From 066dd023d251917651e696afb2ae5b820c4c725f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 29 Jul 2021 09:28:42 +0300 Subject: [PATCH] Revert "Revert "ci: minor optimization in the cancel workflow (#10978)"" This reverts commit 7704685458bfa9222636690059a939c666b13346. The real reason is not that PR, but just github being flaky lately :-| . --- .github/workflows/cancel.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cancel.yml b/.github/workflows/cancel.yml index f3d6acb76..845c45eac 100644 --- a/.github/workflows/cancel.yml +++ b/.github/workflows/cancel.yml @@ -2,7 +2,7 @@ name: Cancel previous workflows on: workflow_run: - workflows: ["Code CI", "Sanitized CI"] # the other workflows finish quickly - no need to skip them for now + workflows: ["Code CI"] types: - requested @@ -14,4 +14,5 @@ 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_id: ${{ github.event.workflow.id }} + # 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 -- 2.30.2