Use PR number for concurrency group (#3790)

This commit is contained in:
Jack Amadeo
2025-08-01 15:36:40 -04:00
committed by GitHub
parent 3b6a92b715
commit 7b67007a54
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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:
@@ -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:
@@ -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:
+1 -1
View File
@@ -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: