diff options
Diffstat (limited to 'danger/specialization_labels/Dangerfile')
-rw-r--r-- | danger/specialization_labels/Dangerfile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/danger/specialization_labels/Dangerfile b/danger/specialization_labels/Dangerfile index ac93eb4c3e1..2261fe23e4e 100644 --- a/danger/specialization_labels/Dangerfile +++ b/danger/specialization_labels/Dangerfile @@ -1,8 +1,6 @@ # frozen_string_literal: true -gitlab_danger = GitlabDanger.new(helper.gitlab_helper) - -return unless gitlab_danger.ci? +return unless helper.ci? SPECIALIZATIONS = { database: 'database', @@ -14,7 +12,7 @@ SPECIALIZATIONS = { ci_template: 'ci::templates' }.freeze -labels_to_add = helper.changes_by_category.each_with_object([]) do |(category, _changes), memo| +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) |