Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
trigger logic
  • Loading branch information
tzulingk committed Dec 9, 2025
commit a7ab8cb2db87f6ab726e731cae64cad0f5e72fb7
6 changes: 3 additions & 3 deletions .github/workflows/container-validation-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,10 @@ jobs:

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