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

_auto_devops_form.html.haml « ci_cd « settings « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f1ce11ce40eef0a745d5e49f33ddd2e052b06c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= form_for group, url: update_auto_devops_group_settings_ci_cd_path(group), method: :patch do |f|
  = form_errors(group)
  %fieldset
    .form-group
      .card.auto-devops-card
        .card-body
          .form-check
            = f.check_box :auto_devops_enabled, class: 'form-check-input', checked: group.auto_devops_enabled?
            = f.label :auto_devops_enabled, class: 'form-check-label' do
              %strong= s_('GroupSettings|Default to Auto DevOps pipeline for all projects within this group')
              %span.badge.badge-info#auto-devops-badge= badge_for_auto_devops_scope(group)
            .form-text.text-muted
              = s_('GroupSettings|The Auto DevOps pipeline runs if no alternative CI configuration file is found.')
              = link_to _('Learn more.'), help_page_path('topics/autodevops/index.md'), target: '_blank'
      = f.submit _('Save changes'), class: 'btn btn-success gl-mt-5'