Production Crons #2427
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: Production Crons | |
on: | |
schedule: | |
- cron: "*/15 * * * *" # Runs every 15 minutes | |
# We will wait until these tests finish before starting a deploy | |
# We will also wait for a deploy to finish before starting to run tests | |
concurrency: | |
group: deploy-production | |
cancel-in-progress: false | |
jobs: | |
e2e-validation: | |
uses: ./.github/workflows/e2e-validation.yml | |
with: | |
environment: production | |
secrets: inherit | |
api-test: | |
uses: ./.github/workflows/run-api-test.yml | |
with: | |
environment: production | |
secrets: inherit |