Generative API (nightly) #182
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
# Helpful YAML parser to clarify YAML syntax: | |
# https://yaml-online-parser.appspot.com/ | |
name: Generative API (nightly) | |
on: | |
schedule: | |
# 10 am UTC is 3am or 4am PT depending on daylight savings. | |
- cron: '0 10 * * *' | |
workflow_dispatch: {} | |
jobs: | |
run-generative-api-examples: | |
if: | | |
github.event_name == 'workflow_dispatch' || | |
(github.event_name == 'schedule' && github.repository == 'google-ai-edge/ai-edge-torch') | |
name: Generative API Examples | |
uses: ./.github/workflows/generative_api_examples.yml | |
with: | |
trigger-sha: ${{ github.sha }} |