On March 23, there was an issue when github renewed their access tokens for certain projects. It seems like it’s affected the ci as well, and currently the scheduled workflow is not running on schedule for me. Here is a relevant part of the config:
workflows:
version: 2
normal_workflow:
jobs:
- checkout_code
- install_dependencies:
requires:
- checkout_code
- run_tests:
requires:
- install_dependencies
daily_schedule:
triggers:
- schedule:
cron: "0 12 * * *"
filters:
branches:
only: master
jobs:
- checkout_code
- install_dependencies:
requires:
- checkout_code
- run_daily_tests:
requires:
- install_dependencies