diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2019-04-08 10:19:48 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2019-04-08 10:19:48 +0000 |
commit | 50cd5d9b776848cf23f1fd1ec52789dbdf946185 (patch) | |
tree | 09b8641d2fc4225480dd2bf68354aa7139501a71 | |
parent | 6844ba2dcc14c722c149f8b257c7fe73ba4854f4 (diff) | |
parent | 50cef82293bfffd515b07a1706a2f0022b162efd (diff) | |
download | gitlab-ce-50cd5d9b776848cf23f1fd1ec52789dbdf946185.tar.gz |
Merge branch 'docs/ci-regexp-syntax' into 'master'
Update RegExp syntax link to RE2
See merge request gitlab-org/gitlab-ce!27090
-rw-r--r-- | doc/ci/yaml/README.md | 2 |
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. |