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
45fd53d0
Unverified
Commit
45fd53d0
authored
Mar 09, 2026
by
Anant Sharma
Committed by
GitHub
Mar 09, 2026
Browse files
fix: always run dynamo container validation on main and release branches (#7083)
Signed-off-by:
Anant Sharma
<
anants@nvidia.com
>
parent
a22b44b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
.github/workflows/container-validation-dynamo.yml
.github/workflows/container-validation-dynamo.yml
+3
-3
No files found.
.github/workflows/container-validation-dynamo.yml
View file @
45fd53d0
...
@@ -26,9 +26,9 @@ jobs:
...
@@ -26,9 +26,9 @@ jobs:
changed-files
:
changed-files
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
outputs
:
outputs
:
core
:
${{ steps.changes.outputs.core }}
core
:
${{
github.ref_name == 'main' || startsWith(github.ref_name, 'release/') ||
steps.changes.outputs.core
== 'true'
}}
planner
:
${{ steps.changes.outputs.planner }}
planner
:
${{
github.ref_name == 'main' || startsWith(github.ref_name, 'release/') ||
steps.changes.outputs.planner
== 'true'
}}
frontend
:
${{ steps.changes.outputs.frontend }}
frontend
:
${{
github.ref_name == 'main' || startsWith(github.ref_name, 'release/') ||
steps.changes.outputs.frontend
== 'true'
}}
builder_name
:
${{ steps.export-builder-name.outputs.builder_name }}
builder_name
:
${{ steps.export-builder-name.outputs.builder_name }}
steps
:
steps
:
-
name
:
Checkout code
-
name
:
Checkout code
...
...
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