nightly #782
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
# Schedule to trigger Main workflow with cleared cache | |
name: nightly | |
on: | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
clear-cache: | |
uses: ./.github/workflows/cache.yaml | |
# add back install test env only | |
install-test-env: | |
needs: [clear-cache] | |
uses: ./.github/workflows/install-env.yaml | |
secrets: inherit | |
clean-dev-env: | |
uses: ./.github/workflows/clean-dev-env-jobs.yaml | |
secrets: inherit | |
# Temp disable nightly main workflow | |
# main: | |
# needs: [clear-cache] | |
# uses: ./.github/workflows/main.yaml | |
# secrets: inherit |