I want configure my CI with a following condition :
My job runs.
I don't find a documentation for this specific job.
Thanks
After severals hours in Gitlab CI documentation i found this solution.
unit_test:
stage: test
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "develop"'
script:
- echo "Test running"
- ...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With