diff options
author | Bob Van Landuyt <bob@gitlab.com> | 2019-05-07 09:57:05 +0000 |
---|---|---|
committer | Bob Van Landuyt <bob@gitlab.com> | 2019-05-07 09:57:05 +0000 |
commit | 0910dfb9d6eb9748b6ca24e10a3382a6515615e5 (patch) | |
tree | ba5de9579bc48d0ef3d6a9584d763717f6eaa055 /doc | |
parent | 9a6e3c0c1b858f2691f3a19c8c01d71408db3796 (diff) | |
parent | 3ad5156eec0885ea36dac03986106b2ecf21cb93 (diff) | |
download | gitlab-ce-0910dfb9d6eb9748b6ca24e10a3382a6515615e5.tar.gz |
Merge branch 'patch-17' into 'master'
doc/ci: include local: remove superfluous ":"
See merge request gitlab-org/gitlab-ce!28112
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/yaml/README.md | 4 |
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: |