2016-12-05 10:00:26 -05:00
|
|
|
- form = local_assigns.fetch(:form)
|
|
|
|
|
|
|
|
.form-group
|
2018-04-11 14:05:57 -04:00
|
|
|
.form-check.builds-feature{ class: ("hidden" if @project && @project.project_feature.send(:builds_access_level) == 0) }
|
2018-05-31 15:20:46 -04:00
|
|
|
= form.check_box :only_allow_merge_if_pipeline_succeeds, class: 'form-check-input'
|
|
|
|
= form.label :only_allow_merge_if_pipeline_succeeds, class: 'form-check-label' do
|
2017-01-25 11:14:58 -05:00
|
|
|
%strong Only allow merge requests to be merged if the pipeline succeeds
|
2016-12-05 10:00:26 -05:00
|
|
|
%br
|
|
|
|
%span.descr
|
2017-01-25 11:14:58 -05:00
|
|
|
Pipelines need to be configured to enable this feature.
|
2017-12-13 08:58:22 -05:00
|
|
|
= link_to icon('question-circle'), help_page_path('user/project/merge_requests/merge_when_pipeline_succeeds', anchor: 'only-allow-merge-requests-to-be-merged-if-the-pipeline-succeeds'), target: '_blank'
|
2018-04-11 14:05:57 -04:00
|
|
|
.form-check
|
2018-05-31 15:20:46 -04:00
|
|
|
= form.check_box :only_allow_merge_if_all_discussions_are_resolved, class: 'form-check-input'
|
|
|
|
= form.label :only_allow_merge_if_all_discussions_are_resolved, class: 'form-check-label' do
|
2016-12-05 10:00:26 -05:00
|
|
|
%strong Only allow merge requests to be merged if all discussions are resolved
|
2018-04-11 14:05:57 -04:00
|
|
|
.form-check
|
2018-05-31 15:20:46 -04:00
|
|
|
= form.check_box :resolve_outdated_diff_discussions, class: 'form-check-input'
|
|
|
|
= form.label :resolve_outdated_diff_discussions, class: 'form-check-label' do
|
2017-09-05 11:49:05 -04:00
|
|
|
%strong Automatically resolve merge request diff discussions when they become outdated
|
2018-04-11 14:05:57 -04:00
|
|
|
.form-check
|
2018-05-31 15:20:46 -04:00
|
|
|
= form.check_box :printing_merge_request_link_enabled, class: 'form-check-input'
|
|
|
|
= form.label :printing_merge_request_link_enabled, class: 'form-check-label' do
|
2017-03-17 08:35:39 -04:00
|
|
|
%strong Show link to create/view merge request when pushing from the command line
|