Commit 8bbb5628c41dce8f68ed9cf187b681eb06c51c53
1 parent
e0e88cdd
Exists in
master
and in
4 other branches
Don't quote the default issue closing regex.
It turns out that regex escapes and YAML quoted-scalar escapes don't play nicely together.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
config/gitlab.yml.example
... | ... | @@ -49,7 +49,7 @@ production: &base |
49 | 49 | ## Automatic issue closing |
50 | 50 | # If a commit message matches this regular express, all issues referenced from the matched text will be closed |
51 | 51 | # if it's pushed to a project's default branch. |
52 | - # issue_closing_pattern: "^([Cc]loses|[Ff]ixes) +#\d+" | |
52 | + # issue_closing_pattern: ^([Cc]loses|[Ff]ixes) +#\d+ | |
53 | 53 | |
54 | 54 | ## Default project features settings |
55 | 55 | default_projects_features: | ... | ... |