Scheduled workflow automatically retries on failure

Hi there - I have a schedule build which runs twice daily - however I noticed today that if the build fails it automatically restarts the build and triggers new builds. So I saw three builds running at the same time at one point.

As these builds are exercising the infrastructure I only want it to run once - and halt on failure. Any ideas why this is happening?

workflows: 
  commit:
    jobs:
      - build

  nightly:
    triggers:
      - schedule:
          cron: "* 8,11 * * *"
          filters:
            branches:
              only:
                - master
    jobs:
      - load_search
      - load:
          requires: 
            - load_search

Hi @ike,

You can use the eddieweb/queue orb to run jobs and workflows sequentially. You can also use the auto cancel redundant builds feature.

Can you please add a build link to a failed job that retried so I can better understand your situation? You may also open a support ticket so we can further investigate.

Hi

Is it safe for me to share the jobs url here? Also how do I open a support ticket? I don’t think my plan included support.