diff options
author | George Tsiolis <tsiolis.g@gmail.com> | 2018-11-30 13:04:06 +0200 |
---|---|---|
committer | George Tsiolis <tsiolis.g@gmail.com> | 2018-11-30 13:04:06 +0200 |
commit | 7f90bb3746e30f4714bbc9331c89a1c2d08d4ee8 (patch) | |
tree | 6bd9e418df8a25d4d01df8be3822a801a8a69620 | |
parent | 817bb1905703f0ae63c3a877348b7b4bcc1136c6 (diff) | |
download | gitlab-ce-7f90bb3746e30f4714bbc9331c89a1c2d08d4ee8.tar.gz |
Change auto devops banner link path
-rw-r--r-- | app/views/shared/_auto_devops_implicitly_enabled_banner.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/_auto_devops_implicitly_enabled_banner.html.haml b/app/views/shared/_auto_devops_implicitly_enabled_banner.html.haml index 6c4607b2f16..0d0a3c1aa64 100644 --- a/app/views/shared/_auto_devops_implicitly_enabled_banner.html.haml +++ b/app/views/shared/_auto_devops_implicitly_enabled_banner.html.haml @@ -1,6 +1,6 @@ - if show_auto_devops_implicitly_enabled_banner?(project) .auto-devops-implicitly-enabled-banner.alert.alert-warning - - more_information_link = link_to _('More information'), 'https://docs.gitlab.com/ee/topics/autodevops/', class: 'alert-link' + - more_information_link = link_to _('More information'), help_page_path('topics/autodevops/index.md'), target: '_blank', class: 'alert-link' - auto_devops_message = s_("AutoDevOps|The Auto DevOps pipeline has been enabled and will be used if no alternative CI configuration file is found. %{more_information_link}") % { more_information_link: more_information_link } = auto_devops_message.html_safe .alert-link-group |