2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2018-11-18 11:00:15 +05:30
# rubocop:disable Style/SignalException
2019-09-30 21:07:59 +05:30
THROUGHPUT_LABELS = [
'Community contribution' ,
'security' ,
'bug' ,
'feature' ,
2020-07-28 23:09:34 +05:30
'feature::addition' ,
'feature::maintenance' ,
'tooling' ,
'tooling::pipelines' ,
'tooling::workflow' ,
2020-04-08 14:13:33 +05:30
'documentation'
2019-09-30 21:07:59 +05:30
] . freeze
2018-11-18 11:00:15 +05:30
if gitlab . mr_body . size < 5
fail " Please provide a proper merge request description. "
end
2019-09-30 21:07:59 +05:30
if ( THROUGHPUT_LABELS & gitlab . mr_labels ) . empty?
2021-10-27 15:23:28 +05:30
warn 'Please add a [merge request type](https://about.gitlab.com/handbook/engineering/metrics/#work-type-classification) to this merge request.'
2019-09-30 21:07:59 +05:30
end
2018-11-18 11:00:15 +05:30
unless gitlab . mr_json [ " assignee " ]
warn " This merge request does not have any assignee yet. Setting an assignee clarifies who needs to take action on the merge request at any given time. "
end
has_milestone = ! gitlab . mr_json [ " milestone " ] . nil?
unless has_milestone
warn " This merge request does not refer to an existing milestone. " , sticky : false
end
has_pick_into_stable_label = gitlab . mr_labels . find { | label | label . start_with? ( 'Pick into' ) }
2020-01-12 00:16:45 +05:30
if gitlab . branch_for_base != " master " && ! has_pick_into_stable_label && ! helper . security_mr?
2018-11-20 20:47:30 +05:30
warn " Most of the time, merge requests should target `master`. Otherwise, please set the relevant `Pick into X.Y` label. "
2018-11-18 11:00:15 +05:30
end