removed "(Beta)" from "Auto DevOps" messages
This commit is contained in:
parent
1c23c3ff3e
commit
bf8c6990b4
8 changed files with 10 additions and 9 deletions
|
@ -7,7 +7,7 @@
|
|||
.checkbox
|
||||
= f.label :auto_devops_enabled do
|
||||
= f.check_box :auto_devops_enabled
|
||||
Enabled Auto DevOps (Beta) for projects by default
|
||||
Enabled Auto DevOps for projects by default
|
||||
.help-block
|
||||
It will automatically build, test, and deploy applications based on a predefined CI/CD configuration
|
||||
= link_to icon('question-circle'), help_page_path('topics/autodevops/index.md')
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
%hr
|
||||
%p
|
||||
- link_to_auto_devops_settings = link_to(s_('AutoDevOps|enable Auto DevOps (Beta)'), project_settings_ci_cd_path(@project, anchor: 'autodevops-settings'))
|
||||
- link_to_auto_devops_settings = link_to(s_('AutoDevOps|enable Auto DevOps'), project_settings_ci_cd_path(@project, anchor: 'autodevops-settings'))
|
||||
- link_to_add_kubernetes_cluster = link_to(s_('AutoDevOps|add a Kubernetes cluster'), new_project_cluster_path(@project))
|
||||
= s_('AutoDevOps|You can automatically build and test your application if you %{link_to_auto_devops_settings} for this project. You can automatically deploy it as well, if you %{link_to_add_kubernetes_cluster}.').html_safe % { link_to_auto_devops_settings: link_to_auto_devops_settings, link_to_add_kubernetes_cluster: link_to_add_kubernetes_cluster }
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
%section.settings#autodevops-settings.no-animate{ class: ('expanded' if expanded) }
|
||||
.settings-header
|
||||
%h4
|
||||
= s_('CICD|Auto DevOps (Beta)')
|
||||
= s_('CICD|Auto DevOps')
|
||||
%button.btn.btn-default.js-settings-toggle{ type: 'button' }
|
||||
= expanded ? _('Collapse') : _('Expand')
|
||||
%p
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
= custom_icon('icon_autodevops')
|
||||
|
||||
.banner-body.prepend-left-10.append-bottom-10
|
||||
%h5.banner-title= s_('AutoDevOps|Auto DevOps (Beta)')
|
||||
%h5.banner-title= 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')
|
||||
|
|
5
changelogs/unreleased/fix-devops-remove-beta.yml
Normal file
5
changelogs/unreleased/fix-devops-remove-beta.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Removed "(Beta)" from "Auto DevOps" messages
|
||||
merge_request: 18759
|
||||
author:
|
||||
type: changed
|
|
@ -1,7 +1,5 @@
|
|||
# Auto DevOps
|
||||
|
||||
DANGER: Auto DevOps is currently in **Beta** and _not recommended for production use_.
|
||||
|
||||
> [Introduced][ce-37115] in GitLab 10.0.
|
||||
|
||||
Auto DevOps automatically detects, builds, tests, deploys, and monitors your
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
# Auto DevOps: quick start guide
|
||||
|
||||
DANGER: Auto DevOps is currently in **Beta** and _not recommended for production use_.
|
||||
|
||||
> [Introduced][ce-37115] in GitLab 10.0.
|
||||
|
||||
This is a step-by-step guide to deploying a project hosted on GitLab.com to
|
||||
|
|
|
@ -152,7 +152,7 @@ feature 'Admin updates settings' do
|
|||
|
||||
scenario 'Change CI/CD settings' do
|
||||
page.within('.as-ci-cd') do
|
||||
check 'Enabled Auto DevOps (Beta) for projects by default'
|
||||
check 'Enabled Auto DevOps for projects by default'
|
||||
fill_in 'Auto devops domain', with: 'domain.com'
|
||||
click_button 'Save changes'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue