Past Status - Optimized Baseline E2E (GKE TPU) #46
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Past Status - Optimized Baseline E2E (GKE TPU) | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| workflow_name_query: | |
| description: 'Name of the workflow to be queried' | |
| required: false | |
| type: 'string' | |
| default: 'nightly-e2e-optimized-baseline-gke-acc-tpu-vllm-x.yaml' | |
| time_window_query: | |
| description: 'How many days in the past to query' | |
| required: true | |
| type: 'string' | |
| default: '5' | |
| branch_query: | |
| description: 'Branch to be queried' | |
| required: false | |
| type: string | |
| default: 'main' | |
| # push: | |
| # branches: | |
| # - main | |
| schedule: | |
| - cron: '0 10 * * *' # 10:00 UTC daily | |
| jobs: | |
| check_for_success: | |
| uses: llm-d/llm-d-infra/.github/workflows/reusable-query-success-past-runs.yaml@main | |
| with: | |
| workflow_name_query: ${{ inputs.workflow_name_query || 'nightly-e2e-optimized-baseline-gke-acc-tpu-vllm-x.yaml' }} | |
| time_window_query: ${{ inputs.time_window_query || '5' }} | |
| branch_query: ${{ inputs.branch_query || 'main' }} | |
| secrets: inherit |