From 7b67007a54e1e38b9e25555e44847b0920682ce5 Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Fri, 1 Aug 2025 15:36:40 -0400 Subject: [PATCH] Use PR number for concurrency group (#3790) --- .github/workflows/pr-comment-build-cli.yml | 2 +- .github/workflows/pr-comment-bundle-intel.yml | 2 +- .github/workflows/pr-comment-bundle-windows.yml | 2 +- .github/workflows/pr-comment-bundle.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-comment-build-cli.yml b/.github/workflows/pr-comment-build-cli.yml index c60c166977..2800e88101 100644 --- a/.github/workflows/pr-comment-build-cli.yml +++ b/.github/workflows/pr-comment-build-cli.yml @@ -17,7 +17,7 @@ permissions: name: Build CLI concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ (github.event.issue && github.event.issue.number) || github.event.inputs.pr_number }} cancel-in-progress: true jobs: diff --git a/.github/workflows/pr-comment-bundle-intel.yml b/.github/workflows/pr-comment-bundle-intel.yml index cc15cfd842..142df6af91 100644 --- a/.github/workflows/pr-comment-bundle-intel.yml +++ b/.github/workflows/pr-comment-bundle-intel.yml @@ -19,7 +19,7 @@ permissions: name: Bundle Intel Desktop App concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ (github.event.issue && github.event.issue.number) || github.event.inputs.pr_number }} cancel-in-progress: true jobs: diff --git a/.github/workflows/pr-comment-bundle-windows.yml b/.github/workflows/pr-comment-bundle-windows.yml index e966d2af07..212fde17d4 100644 --- a/.github/workflows/pr-comment-bundle-windows.yml +++ b/.github/workflows/pr-comment-bundle-windows.yml @@ -22,7 +22,7 @@ permissions: name: Bundle Windows Desktop App concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ (github.event.issue && github.event.issue.number) || github.event.inputs.pr_number }} cancel-in-progress: true jobs: diff --git a/.github/workflows/pr-comment-bundle.yml b/.github/workflows/pr-comment-bundle.yml index 3aff2021e7..ad635e665a 100644 --- a/.github/workflows/pr-comment-bundle.yml +++ b/.github/workflows/pr-comment-bundle.yml @@ -19,7 +19,7 @@ permissions: name: Bundle ARM64 Desktop App concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ (github.event.issue && github.event.issue.number) || github.event.inputs.pr_number }} cancel-in-progress: true jobs: