gitlab-org--gitlab-foss/app/views/shared/_auto_devops_callout.html.haml

18 lines
875 B
Plaintext
Raw Normal View History

2017-09-01 12:32:05 +00:00
.user-callout{ data: { uid: 'auto_devops_settings_dismissed' } }
2017-09-01 11:18:00 +00:00
.bordered-box.landing.content-block
%button.btn.btn-default.close.js-close-callout{ type: 'button',
'aria-label' => 'Dismiss Auto Dev Ops box' }
= icon('times', class: 'dismiss-icon', 'aria-hidden' => 'true')
.svg-container
= custom_icon('icon_autodevops')
.user-callout-copy
%h4
Auto Dev Ops (Beta)
%p
Auto Dev Ops can be activated for this project. It will automatically build, test, and deploy your application based on a predefined CI/CD configuration.
2017-09-01 11:18:00 +00:00
%p
Learn more in the
= link_to 'Auto DevOps documentation', help_page_path('topics/autodevops/index.md'), target: '_blank', rel: 'noopener noreferrer'
2017-09-01 11:18:00 +00:00
= link_to 'Enable in settings', project_settings_ci_cd_path(@project), class: 'btn btn-primary js-close-callout'