From 0916432b49b31b73d6d60867287642765f9f4729 Mon Sep 17 00:00:00 2001 From: Steve Azzopardi Date: Mon, 30 Nov 2020 20:47:04 +0100 Subject: [PATCH] ci: enable merge request pipelines Enable merge request pipelines so that the pipelines run in the merge request context instead of branches context. This would enable to use more dynamic rules depending what kind of merge request is open. reference https://gitlab.com/gitlab-org/labkit/-/issues/31 --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 45b0c98d..407bba6b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: golang:1.13 include: - template: Security/SAST.gitlab-ci.yml + - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml' variables: REPO_NAME: gitlab.com/gitlab-org/labkit -- GitLab