summaryrefslogtreecommitdiff
path: root/app/views/projects/_merge_request_pipelines_and_threads_options.html.haml
blob: 94f8d3cc4a387e9f3d472a9048ad87597d25a154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- form = local_assigns.fetch(:form)

= form.gitlab_ui_checkbox_component :only_allow_merge_if_pipeline_succeeds,
  s_('ProjectSettings|Pipelines must succeed'),
  help_text: s_("ProjectSettings|Merge requests can't be merged if the latest pipeline did not succeed or is still running.")
.gl-pl-6
  = form.gitlab_ui_checkbox_component :allow_merge_on_skipped_pipeline,
    s_('ProjectSettings|Skipped pipelines are considered successful'),
    help_text: s_('ProjectSettings|Introduces the risk of merging changes that do not pass the pipeline.'),
    checkbox_options: { class: 'gl-pl-6' }
= form.gitlab_ui_checkbox_component :only_allow_merge_if_all_discussions_are_resolved,
  s_('ProjectSettings|All threads must be resolved'),
  checkbox_options: { data: { qa_selector: 'allow_merge_if_all_discussions_are_resolved_checkbox' } }