22 lines
566 B
Ruby
22 lines
566 B
Ruby
# frozen_string_literal: true
|
|
|
|
return unless helper.ci?
|
|
|
|
SPECIALIZATIONS = {
|
|
database: 'database',
|
|
backend: 'backend',
|
|
frontend: 'frontend',
|
|
docs: 'documentation',
|
|
qa: 'QA',
|
|
tooling: 'type::tooling',
|
|
ci_template: 'ci::templates',
|
|
feature_flag: 'feature flag'
|
|
}.freeze
|
|
|
|
labels_to_add = project_helper.changes_by_category.each_with_object([]) do |(category, _changes), memo|
|
|
label = SPECIALIZATIONS[category]
|
|
|
|
memo << label if label && !gitlab.mr_labels.include?(label)
|
|
end
|
|
|
|
project_helper.labels_to_add.concat(labels_to_add) if labels_to_add.any?
|