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
diff options
context:
space:
mode:
authorLeandro Camargo <leandroico@gmail.com>2016-12-07 08:01:34 +0300
committerLeandro Camargo <leandroico@gmail.com>2017-01-25 06:07:44 +0300
commitbe7106a145b1e3d4c6e06503e0f7f3032ace3764 (patch)
treeeade35f3dbfa182058388094e11fd983274e1eae /doc
parentf8bec0d1fb05d2c3e87a0470579ee7a650ade23c (diff)
Force coverage value to always be surrounded by '/'
Diffstat (limited to 'doc')
-rw-r--r--doc/ci/yaml/README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 5e2d9788f33..85b2c75cee8 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -286,9 +286,10 @@ build outputs. Setting this up globally will make all the jobs to use this
setting for output filtering and extracting the coverage information from your
builds.
-Regular expressions are used by default. So using surrounding `/` is optional,
-given it'll always be read as a regular expression. Don't forget to escape
-special characters whenever you want to match them literally.
+Regular expressions are the only valid kind of value expected here. So, using
+surrounding `/` is mandatory in order to consistently and explicitly represent
+a regular expression string. You must escape special characters if you want to
+match them literally.
A simple example:
```yaml