summaryrefslogtreecommitdiff
path: root/danger/specialization_labels/Dangerfile
blob: 919f7313b4948bde23cddfdf665ebde590b7dc69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

gitlab_danger = GitlabDanger.new(helper.gitlab_helper)

return unless gitlab_danger.ci?

SPECIALIZATIONS = {
  database: 'database',
  backend: 'backend',
  frontend: 'frontend',
  docs: 'documentation',
  qa: 'QA',
  engineering_productivity: 'Engineering Productivity'
}.freeze

labels_to_add = helper.changes_by_category.each_with_object([]) do |(category, _changes), memo|
  label = SPECIALIZATIONS[category]

  memo << label if label && !gitlab.mr_labels.include?(label)
end

if labels_to_add.any?
  gitlab.api.update_merge_request(gitlab.mr_json['project_id'],
                                  gitlab.mr_json['iid'],
                                  add_labels: labels_to_add.join(','))
end