Skip to content

Commit a7ab8cb

Browse files
committed
trigger logic
Signed-off-by: [email protected] <[email protected]>
1 parent 5f60d44 commit a7ab8cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/container-validation-backends.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,10 +332,10 @@ jobs:
332332

333333
deploy-test-fault-tolerance:
334334
runs-on: cpu-amd-m5-2xlarge
335-
# Only run on nightly schedule or when explicitly requested
335+
# Run on nightly schedule (health check) or when explicitly requested via workflow_dispatch
336336
if: |
337-
needs.changed-files.outputs.has_code_changes == 'true' &&
338-
(github.event_name == 'schedule' || github.event.inputs.run_deploy_operator == 'true')
337+
github.event_name == 'schedule' ||
338+
(needs.changed-files.outputs.has_code_changes == 'true' && github.event.inputs.run_deploy_operator == 'true')
339339
needs: [changed-files, operator, vllm, trtllm, sglang]
340340
permissions:
341341
contents: read

0 commit comments

Comments
 (0)