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,7 +49,7 @@ production: &base | ||
49 | ## Automatic issue closing | 49 | ## Automatic issue closing |
50 | # If a commit message matches this regular express, all issues referenced from the matched text will be closed | 50 | # If a commit message matches this regular express, all issues referenced from the matched text will be closed |
51 | # if it's pushed to a project's default branch. | 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 | ## Default project features settings | 54 | ## Default project features settings |
55 | default_projects_features: | 55 | default_projects_features: |