Nightly CI (Release branch) #445
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
name: Nightly CI (Release branch) | |
# workflow can be scheduled ONLY from DEFAULT branch | |
# > This event will only trigger a workflow run if the workflow file is on the default branch. | |
# See: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule | |
on: | |
schedule: | |
- cron: '0 23 * * *' # run at 10 PM UTC | |
jobs: | |
builds: | |
uses: ./.github/workflows/shared_workflow.yml | |
secrets: inherit | |
with: | |
branch: release/2.7 |