Commit 62de22c142d0ad9d956e7f6dae2eef4559d38436
1 parent
68a7ecda
Exists in
master
and in
4 other branches
External issue tracker params added to config
Showing
1 changed file
with
10 additions
and
1 deletions
Show diff stats
config/gitlab.yml.example
... | ... | @@ -8,6 +8,7 @@ |
8 | 8 | # 3. Replace gitlab -> email_from |
9 | 9 | |
10 | 10 | <<<<<<< HEAD |
11 | +<<<<<<< HEAD | |
11 | 12 | production: &base |
12 | 13 | # |
13 | 14 | # 1. GitLab app settings |
... | ... | @@ -38,9 +39,17 @@ production: &base |
38 | 39 | # signup_enabled: true # default: false - Account passwords are not sent via the email if signup is enabled. |
39 | 40 | # username_changing_enabled: false # default: true - User can change her username/namespace |
40 | 41 | |
41 | - ## Available issues trackers | |
42 | + | |
43 | + ## External issues trackers | |
42 | 44 | issues_tracker: |
43 | 45 | redmine: |
46 | + ## If not nil Issues link in project page will be replaced to this | |
47 | + url: "http://redmine.sample" | |
48 | + ## If not nil links from /#\d/ entities from commit messages will replaced to this | |
49 | + ## Use placeholders: | |
50 | + ## :project_id - Gitlab project identifier | |
51 | + ## :issues_tracker_id - Project Name or Id in external issue tracker | |
52 | + ## :id - Issue id (from commit messages) | |
44 | 53 | issues_url: "http://redmine.sample/issues/:id" |
45 | 54 | |
46 | 55 | ## Gravatar | ... | ... |