From 0a20c5c8b3f7d34d4cc25cfe15f621e2db2be726 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 22 Mar 2026 13:57:46 -0700 Subject: [PATCH] fix(ci): stop serializing push workflow runs --- .github/workflows/ci.yml | 2 +- .github/workflows/install-smoke.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c441e097665..3611a3d11e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: types: [opened, reopened, synchronize, ready_for_review, converted_to_draft] concurrency: - group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: ${{ github.event_name == 'pull_request' && format('ci-pr-{0}', github.event.pull_request.number) || format('ci-push-{0}', github.run_id) }} cancel-in-progress: ${{ github.event_name == 'pull_request' }} env: diff --git a/.github/workflows/install-smoke.yml b/.github/workflows/install-smoke.yml index f257eda4efc..71896bbcdfc 100644 --- a/.github/workflows/install-smoke.yml +++ b/.github/workflows/install-smoke.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: concurrency: - group: install-smoke-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: ${{ github.event_name == 'pull_request' && format('install-smoke-pr-{0}', github.event.pull_request.number) || format('install-smoke-push-{0}', github.run_id) }} cancel-in-progress: ${{ github.event_name == 'pull_request' }} env: