Skip to content

Commit 5034601

Browse files
fix: restore release branch CI trigger with concurrency group
Add release/** back to build.yml push triggers so CI runs on release branch commits (required by Craft status checks). Use concurrency group keyed on github.ref to prevent duplicate runs per branch, matching the getsentry/cli pattern.
1 parent f43d9dd commit 5034601

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ on:
55
push:
66
branches:
77
- main
8+
- "release/**"
9+
10+
concurrency:
11+
group: build-${{ github.ref }}
12+
cancel-in-progress: true
813

914
jobs:
1015
test_job:

0 commit comments

Comments
 (0)