Cron job not running

I have a cron trigger that I have (for the purpose of testing) set to run once a minute (or at least I thought). It is not running. The config is here: https://github.com/beckermr/conda-tests/blob/master/.circleci/config.yml

What is going wrong here?

Here is a working cron I have - maybe compare the lines?

workflows:
  version: 2
  test-build:
    jobs:
      - build:
          filters:
            branches:
              only: master
  build-on-schedule:
    jobs:
      - build
    # The cron format is:
    # min (0-59) hour (0-23) monthday (1-31) month (1-12) weekday (0-6, 0=Sun)
    triggers:
      - schedule:
          cron: "0 2 * * 6"
          filters:
            branches:
              only:
                - master

Your cron is currently set to midnight every Tuesday though - every minute would be five stars.

Riiiight. I think I got it working now. Thanks!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.