From 7055cb5065e5fcc1409e9c3230c39837937f1368 Mon Sep 17 00:00:00 2001 From: Sean McGrail Date: Wed, 19 Nov 2025 20:22:45 +0000 Subject: [PATCH] Adjust image-build-android concurrency group --- .github/workflows/image-build-android.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/image-build-android.yml b/.github/workflows/image-build-android.yml index 08c6d1d284..41c94ae7b0 100644 --- a/.github/workflows/image-build-android.yml +++ b/.github/workflows/image-build-android.yml @@ -18,7 +18,11 @@ on: - .github/docker_images/aws-lc/android/Dockerfile - .github/docker_images/scripts/** concurrency: - group: ${{ inputs.concurrency_prefix || github.workflow }}-${{ github.ref_name }} + group: > + ${{ inputs.concurrency_prefix || github.workflow }}- + ${{ github.event_name == 'pull_request_target' + && format('pr-{0}', github.event.pull_request.number) + || format('{0}-{1}', github.ref_type || 'ref', github.ref_name || github.ref) }} cancel-in-progress: true env: GOPROXY: https://proxy.golang.org,direct