From ac998c2aa3a4729b23350dd3b7b298bf538d57bf Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 13 Aug 2025 18:24:17 -0500 Subject: [PATCH] Update github CI concurrency key (#555) This bit me while releasing wasi-sdk-26/27 because while I tried to get both builds going at once they overlapped in their key meaning that they had to progress one-at-a-time. This uses `github.ref` instead of the PR number which I think should be more robust in situations like this. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4586bab..cad0c10 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ on: workflow_dispatch: concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: