summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-11-21 12:32:35 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2018-11-21 12:32:35 +0000
commit25c7103484075dd8e2ff934d0aa5e4c7986df816 (patch)
treef16d4ed4bb8b88acd5384e999dcd9e00afe70100
parentd093bbaec526637bf0ce550b50002c19c7a1c056 (diff)
parentd3b1f828e43280881b58a0a1be3440270aa788d6 (diff)
downloadgitlab-ce-25c7103484075dd8e2ff934d0aa5e4c7986df816.tar.gz
Merge branch 'patch-32' into 'master'
Docs: specify regexp language used for `only`/`except` mechanism in `.gitlab-ci.yaml` See merge request gitlab-org/gitlab-ce!23235
-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.