Skip to content

Commit 09ae150

Browse files
committed
enable RC rolling builds
1 parent 54df3a0 commit 09ae150

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-rc-auto.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
# It runs on every commit pushed to a release branch, but only when the release PR
55
# has the 'auto-rc-builds' label.
66
#
7+
# Rolling builds: when a new run starts for the same release branch, any queued or
8+
# in-progress run of this workflow for that branch is cancelled (same behavior as
9+
# Bitrise “Rolling builds” / “Abort running builds” for one branch + one workflow).
10+
#
711
# Builds are triggered via the Runway OTA/build pipeline (runway-ota-build-core.yml):
812
# - iOS runs first and performs the version bump.
913
# - Android runs after, skipping the version bump (already done by iOS).
@@ -16,6 +20,10 @@ on:
1620
branches:
1721
- 'release/*'
1822

23+
concurrency:
24+
group: ${{ github.workflow }}-${{ github.ref }}
25+
cancel-in-progress: true
26+
1927
permissions:
2028
contents: write
2129
pull-requests: write

0 commit comments

Comments
 (0)