From 9b529e5b305b5d0fb82f75b6553078e8ab60ede3 Mon Sep 17 00:00:00 2001 From: "Mark S. Lewis" Date: Tue, 23 Jun 2026 11:00:06 +0100 Subject: [PATCH] build: use PR number for title check concurrency The github.ref may just be the target branch name, which results in all PR title checks sharing the same concurrency group. This change uses the PR number (if available) as the discriminator. Signed-off-by: Mark S. Lewis --- .github/workflows/pr_title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index 827e0a9..76ed391 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -6,7 +6,7 @@ on: # Most recent PR change supersedes previous changes. concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true # Default to the minimum read-only token for all jobs.