summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@gitlab.com>2019-05-07 09:57:05 +0000
committerBob Van Landuyt <bob@gitlab.com>2019-05-07 09:57:05 +0000
commit0910dfb9d6eb9748b6ca24e10a3382a6515615e5 (patch)
treeba5de9579bc48d0ef3d6a9584d763717f6eaa055
parent9a6e3c0c1b858f2691f3a19c8c01d71408db3796 (diff)
parent3ad5156eec0885ea36dac03986106b2ecf21cb93 (diff)
downloadgitlab-ce-0910dfb9d6eb9748b6ca24e10a3382a6515615e5.tar.gz
Merge branch 'patch-17' into 'master'
doc/ci: include local: remove superfluous ":" See merge request gitlab-org/gitlab-ce!28112
-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: