Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
f50c3861
Unverified
Commit
f50c3861
authored
Nov 12, 2025
by
Dillon Cullinan
Committed by
GitHub
Nov 12, 2025
Browse files
ci: OPS-2024: Fix concurrency on main (#4258)
Signed-off-by:
Dillon Cullinan
<
dcullinan@nvidia.com
>
parent
bb7d203f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
.github/workflows/container-validation-backends.yml
.github/workflows/container-validation-backends.yml
+5
-1
No files found.
.github/workflows/container-validation-backends.yml
View file @
f50c3861
...
@@ -11,7 +11,11 @@ on:
...
@@ -11,7 +11,11 @@ on:
-
release/*.*.*
-
release/*.*.*
concurrency
:
concurrency
:
group
:
${{ github.workflow }}-build-test-${{ github.ref_name || github.run_id }}
# The group name is a ternary operation. If the ref_name is 'main',
# then the group name uses the run_id to ensure a unique group for
# 'main' pushes. Otherwise, the group name is the ref_name, so that
# workflows on the same PR/branch have the same group name for cancelling.
group
:
docker-build-test-${{ github.ref_name == 'main' && github.run_id || github.ref_name }}
cancel-in-progress
:
${{ github.ref != 'refs/heads/main' }}
cancel-in-progress
:
${{ github.ref != 'refs/heads/main' }}
jobs
:
jobs
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment