Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2017-09-19 11:19:22 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2017-09-19 11:19:22 +0300
commit8d5d5c750c602a835614b02f9db42ead1c4b2f5e (patch)
treeadba500a1b0f99d7c2c727caac5488bd333817c5 /.gitlab-ci.yml
parent3a13a4af23f4c108faccc58fd3658087f82ccea5 (diff)
Replace triggers with pipelines so that these jobs are skipped
Needed for https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/14354
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f73ea69a..2b952a7f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -47,12 +47,12 @@ internal_links:
- docker
dependencies:
- compile
- # Skip this job when it's invoked by a trigger. That will speed up the
- # pipeline when a docs preview is triggered. We already check for internal
- # links in every MR anyway.
+ # Skip this job when it's invoked by a cross project pipeline. That will speed
+ # up the pipeline when a docs preview is triggered. We already check for
+ # internal links in every MR anyway. For more info:
# https://docs.gitlab.com/ee/development/writing_documentation.html#previewing-the-changes-live
except:
- - triggers
+ - pipelines
scss_lint:
stage: test
@@ -64,12 +64,12 @@ scss_lint:
- vendor/ruby
tags:
- docker
- # Skip this job when it's invoked by a trigger. That will speed up the
- # pipeline when a docs preview is triggered. The triggered pipeline is almost
- # always a branch off master which should be green anyway.
+ # Skip this job when it's invoked by a cross project pipeline. That will speed
+ # up the pipeline when a docs preview is triggered. The triggered pipeline is
+ # always a branch off master which should be green anyway. For more info:
# https://docs.gitlab.com/ee/development/writing_documentation.html#previewing-the-changes-live
except:
- - triggers
+ - pipelines
review:
stage: deploy