diff options
author | Stan Hu <stanhu@gmail.com> | 2016-06-22 14:10:24 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-06-22 14:10:24 -0700 |
commit | 69c70928c8b663e704fc9bdb21fd4094e3d27327 (patch) | |
tree | 5a87e04cabb0c1af7694ec1f0b7a6768a328d8be /doc | |
parent | 74f8f260982a9b9e1941ad803d53d229cc27c85f (diff) | |
download | gitlab-ce-69c70928c8b663e704fc9bdb21fd4094e3d27327.tar.gz |
Update default regexp documentation to match 8172d2c1.update-regexp-doc
[ci skip]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/customization/issue_closing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/customization/issue_closing.md b/doc/customization/issue_closing.md index 194b8e00299..4620bb2dcde 100644 --- a/doc/customization/issue_closing.md +++ b/doc/customization/issue_closing.md @@ -8,7 +8,7 @@ the matched text will be closed. This happens when the commit is pushed to a pro When not specified, the default `issue_closing_pattern` as shown below will be used: ```bash -((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?) +(?:(?:issues? +)?%{issue_ref}(?:(?:, *| +and +)?))+) +((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?|[Rr]esolv(?:e[sd]?|ing))(:?) +(?:(?:issues? +)?%{issue_ref}(?:(?:, *| +and +)?)|([A-Z][A-Z0-9_]+-\d+))+) ``` Here, `%{issue_ref}` is a complex regular expression defined inside GitLab, that matches a reference to a local issue (`#123`), cross-project issue (`group/project#123`) or a link to an issue (`https://gitlab.example.com/group/project/issues/123`). |