summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElouan Keryell-Even <elouan.keryell@gmail.com>2018-11-20 11:48:25 +0000
committerElouan Keryell-Even <elouan.keryell@gmail.com>2018-11-20 11:48:25 +0000
commitd3b1f828e43280881b58a0a1be3440270aa788d6 (patch)
treec4e5abd00025941dd2a975d710deeed4c81c1cd2
parent0e26ee6c4ffcc54a4d5b8823c15171b4e9779a14 (diff)
downloadgitlab-ce-d3b1f828e43280881b58a0a1be3440270aa788d6.tar.gz
Specify regexp language used for `only`/`except` mechanism in `.gitlab-ci.yaml`
-rw-r--r--doc/ci/yaml/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 44eec43ef54..66743ea0e47 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -334,7 +334,7 @@ There are a few rules that apply to the usage of job policy:
* `only` and `except` are inclusive. If both `only` and `except` are defined
in a job specification, the ref is filtered by `only` and `except`.
-* `only` and `except` allow the use of regular expressions.
+* `only` and `except` allow the use of regular expressions (using [Ruby regexp syntax](https://ruby-doc.org/core/Regexp.html)).
* `only` and `except` allow to specify a repository path to filter jobs for
forks.