Trigger Nightly RAPIDS Pipeline #1052
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: Trigger Nightly RAPIDS Pipeline | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 5 * * *" # 5am UTC / 1am EST | |
| jobs: | |
| trigger-pipeline: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - rapids_branch: "main" | |
| run_tests: true | |
| - rapids_branch: "release/26.04" | |
| run_tests: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Trigger Pipeline | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh workflow run nightly-pipeline.yaml \ | |
| -f rapids_branch="${{ matrix.rapids_branch }}" \ | |
| -f run_tests="${{ matrix.run_tests }}" |