Nightly Pipeline Prerelease #11
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
# Triggers the nightly pipeline on non-main branches, as only pipelines on the | |
# default branch can be scheduled directly. | |
name: Nightly Pipeline Prerelease | |
on: | |
schedule: | |
- cron: '5 0 * * *' | |
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 |