Nightly Pipeline Scheduler #117
This file contains 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
# Schedules nightly pipeline on non-main branches | |
name: Nightly Pipeline Scheduler | |
on: | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
schedule: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Schedule version/4.5 | |
run: gh workflow run nightly-pipeline.yml --repo '${{ github.repository }}' --ref version/4.5 |