Regression Check #2873
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: "Regression Check" | |
on: | |
# no timezone support so cron runs in UTC time for now | |
schedule: | |
- cron: "8 15 * * *" | |
# Allow workflow to be manually run from the GitHub UI | |
workflow_dispatch: | |
workflow_call: | |
push: | |
pull_request: | |
jobs: | |
have-a-magical-day: | |
name: "Have a magical day" | |
uses: michaeltchuang/.github/.github/workflows/clikt-app-tests.yml@main | |
with: | |
app_workspace: "HaveAMagicalDay" | |
disney-scenic-rides: | |
name: "Disney Scenic Rides" | |
uses: michaeltchuang/.github/.github/workflows/android-app-tests.yml@main | |
with: | |
app_workspace: "DisneyScenicRides" | |
automerge-dependabot: | |
name: "Save PR Number for Dependabot Automerge" | |
needs: [ have-a-magical-day, disney-scenic-rides ] | |
uses: michaeltchuang/.github/.github/workflows/dependabot-save-pr-number.yml@main | |
secrets: inherit |