summaryrefslogtreecommitdiff
path: root/app/views/groups/settings/ci_cd/_form.html.haml
blob: b6f70879d17e9c5d77c4a2e6bd635f3876563821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.row.gl-mt-3
  .col-lg-12
    = form_for group, url: group_settings_ci_cd_path(group, anchor: 'js-general-pipeline-settings') do |f|
      = form_errors(group)
      %fieldset.builds-feature
        .form-group
          = f.label :max_artifacts_size, _('Maximum artifacts size'), class: 'label-bold'
          = f.number_field :max_artifacts_size, class: 'form-control'
          %p.form-text.text-muted
            = _("The maximum file size in megabytes for individual job artifacts.")
            = link_to s_('Learn more.'), help_page_path('user/admin_area/settings/continuous_integration', anchor: 'maximum-artifacts-size'), target: '_blank', rel: 'noopener noreferrer'
        = f.submit _('Save changes'), class: "btn gl-button btn-confirm"