Scheduled workflow stopped running after latest gh/ci issue

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

Hello there,

Have you pushed any new commits manually since then? If not please give that a try, our system may need to be re-triggered with a manual commit.

Yes, that fixed it. Thank you

1 Like

Glad to hear it!
happy building!

1 Like