Hi all,
I have the following config:
version: 2.1
jobs:
build:
machine: true
steps:
- checkout
- run:
command: make
name: build
- store_artifacts:
path: build/Manifest
- store_artifacts:
path: build/environment.bz2
- store_artifacts:
path: build/smoketest
- run:
command: make push-image
name: push image
workflows:
version: 2
commit:
jobs:
- build
weekly:
triggers:
- schedule:
cron: "20 20 * * 2"
filters:
branches:
only:
- master
jobs:
- build
Or see the original file on github – the “commit” workflow works fine from what I can see, however the “weekly” workflow is never triggered. I have not found linting complain about the config, either. Any hint, why this workflow does not start once a week is highly welcome.
Thanks,
Bjoern