Run Scheduled Reporting #111
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: Run Scheduled Reporting | |
on: | |
# Run daily prior to 6 am US Eastern Time | |
# (after the benchmarks have completed and before the typical North America workday). | |
# (Use any minute other than "on the hour".) | |
schedule: | |
- cron: "40 9 * * *" # UTC | |
# Also allow running on demand via the "Run workflow" UI in GitHub Actions. | |
workflow_dispatch: {} | |
concurrency: 1 | |
permissions: {} # none | |
jobs: | |
reporting: | |
uses: ./.github/workflows/wrapper.yml | |
secrets: inherit | |
with: | |
script: | | |
# If any benchmarking instances are running long, stop them, and fail. | |
# If they had all finished on time, proceed with the reports. | |
./bin/run quash && ./bin/run report |