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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorElan Ruusamäe <glen@delfi.ee>2019-05-06 11:38:55 +0300
committerElan Ruusamäe <glen@delfi.ee>2019-05-06 11:38:55 +0300
commit3ad5156eec0885ea36dac03986106b2ecf21cb93 (patch)
treefe00357742a18939befd225f60aba32328a1ac7e /doc/ci
parent8b55b794cb48c726cde7cf0ad24180d8e6bb975f (diff)
include local: remove superfluous ":"
Diffstat (limited to 'doc/ci')
-rw-r--r--doc/ci/yaml/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 99e4c64ff86..dca2d953286 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -2078,8 +2078,8 @@ of the `group/my-project`:
```yaml
include:
- - local: : /templates/docker-build.yml
- - local: : /templates/docker-testing.yml
+ - local: /templates/docker-build.yml
+ - local: /templates/docker-testing.yml
```
Our `/templates/docker-build.yml` present in `group/my-project` adds a `docker-build` job: