Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_auto_devops_callout.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2b941c6106d720a05a146eb3fb77437f8ce6538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
= render Pajamas::BannerComponent.new(button_text: s_('AutoDevOps|Enable in settings'),
  button_link: project_settings_ci_cd_path(@project, anchor: 'autodevops-settings'),
  svg_path: 'illustrations/autodevops.svg',
  banner_options: { class: 'js-autodevops-banner', data: { uid: 'auto_devops_settings_dismissed', project_path: project_path(@project) } },
  close_options: { 'aria-label' => s_('AutoDevOps|Dismiss Auto DevOps box'), class: 'js-close-callout' }) do |c|
  - c.title do
    = s_('AutoDevOps|Auto DevOps')

  %p= s_('AutoDevOps|It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.')

  %p
    - link = link_to(s_('AutoDevOps|Auto DevOps documentation'), help_page_path('topics/autodevops/index.md'), target: '_blank', rel: 'noopener noreferrer')
    = s_('AutoDevOps|Learn more in the %{link_to_documentation}').html_safe % { link_to_documentation: link }