Hi,
I’ve tried combining a cron and push trigger with a master branch condition. Reading the docs it says ‘all triggers have to eval to true’ for the job to run, which may be impossible if it’s a cron combined with anything else?
I tried:
trigger:
branch:
- master
event:
- cron
- push
cron:
- nightly
trigger:
branch:
- master
event:
- cron
- push
trigger:
include:
- nightly
trigger:
branch:
- master
event:
include:
- cron
- push
trigger:
include:
- nightly
no joy for either combo. Is this meant to work / am I doing something wrong?
Cheers