fix(GHA): improve specificity of concurrency (#59677)

This commit is contained in:
Mrugesh Mohapatra
2025-04-12 03:24:12 -05:00
committed by GitHub
parent a78f40f7e6
commit c87ae5a8ba
6 changed files with 9 additions and 13 deletions

View File

@@ -10,13 +10,13 @@ on:
pull_request:
branches:
- 'main'
- 'next-**'
- 'temp-**' # Temporary branches allowed on Upstream
# Run on Merge Queue
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.workflow_run.head_branch || github.ref }}
cancel-in-progress: true
permissions: