I have 2 pipelines on gitlab CI, and i want to add a dependency on them. That is, when the first pipeline completes without errors, execute the other.
- Pipeline 1 : unit test, lint + build
- Pipeline 2: run automated tests
About pipeline 2:
needs to be executed once or twice a day
needs to be triggered after successful build of Pipeline 1
Any clues on how to achieve this on the gitlab-ci file?