Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/hidrive-next-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ on:
- '**.vue'
- '.gitmodules'
push:
# One converged list, identical on every branch. GitHub evaluates this block
# from the pushed branch's own copy, so the list must cover every live lane:
# the per-major globs, the legacy unsuffixed lanes (retired later), the trains
# in both naming eras, and user dev branches.
branches:
- 'ionos-dev-v*'
- 'ionos-stable-v*'
- ionos-dev
- ionos-stable
- 'rc/**'
Expand Down Expand Up @@ -60,7 +66,8 @@ concurrency:
group: >-
${{ github.workflow }}-${{
(
contains(fromJson('["refs/heads/ionos-dev","refs/heads/ionos-stable"]'), github.ref) ||
startsWith(github.ref, 'refs/heads/ionos-dev') ||
startsWith(github.ref, 'refs/heads/ionos-stable') ||
startsWith(github.ref, 'refs/heads/rc/')
) && github.run_id ||
(github.head_ref || github.ref_name)
Expand Down
Loading