Test Production Workflow #245
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: Test Production Workflow | |
on: | |
# Run on a cron job at 1am UTC (9pm EST) Sunday through Thursday | |
schedule: | |
- cron: '0 1 * * 0-4' | |
jobs: | |
test_runner_workflow_job: | |
name: Run Production Tests | |
uses: ./.github/workflows/test-runner.yml | |
with: | |
TARGET_NAME: production | |
TARGET_DOMAIN: ${{ vars.PRODUCTION_DOMAIN }} | |
TARGET_SLACK_CHANNEL: ${{ vars.SLACK_CHANNEL_PRODUCTION }} | |
secrets: inherit |