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