summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Mize <me@codymize.com>2019-04-08 10:19:47 +0000
committerKamil TrzciƄski <ayufan@ayufan.eu>2019-04-08 10:19:47 +0000
commit50cef82293bfffd515b07a1706a2f0022b162efd (patch)
tree09b8641d2fc4225480dd2bf68354aa7139501a71
parent6844ba2dcc14c722c149f8b257c7fe73ba4854f4 (diff)
downloadgitlab-ce-50cef82293bfffd515b07a1706a2f0022b162efd.tar.gz
Update RegExp syntax link to RE2
CI ref pattern matching now uses RE2 instead of Ruby. See https://about.gitlab.com/2019/04/01/security-release-gitlab-11-dot-9-dot-4-released/ for more information.
-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 cf2189cd00a..1d76f911943 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -319,7 +319,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 (using [Ruby regexp syntax](https://ruby-doc.org/core/Regexp.html)).
+- `only` and `except` allow the use of regular expressions ([supported regexp syntax](#supported-onlyexcept-regexp-syntax)).
- `only` and `except` allow to specify a repository path to filter jobs for
forks.