GitLab Runners
Pull request pipeline
# Example of a pipeline that runs on ever Pull Request
include:
- 'https://gitlab.com/gomboc-ai/actions/-/raw/main/action/.gitlab-ci.yml'
stages:
- example
variables:
EFFECT: submit-for-review
setup-job:
stage: example
extends: .run-scan
rules:
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
Scheduled pipeline
Last updated