diff options
Diffstat (limited to 'danger/specialization_labels/Dangerfile')
-rw-r--r-- | danger/specialization_labels/Dangerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/danger/specialization_labels/Dangerfile b/danger/specialization_labels/Dangerfile index cb4c8c96f4f..f161c470f36 100644 --- a/danger/specialization_labels/Dangerfile +++ b/danger/specialization_labels/Dangerfile @@ -9,7 +9,6 @@ SPECIALIZATIONS = { ux: 'UX', docs: 'documentation', qa: 'QA', - tooling: 'type::tooling', ci_template: 'ci::templates', feature_flag: 'feature flag' }.freeze @@ -26,4 +25,4 @@ labels_to_add = helper.changes_by_category.each_with_object([]) do |(category, _ memo << label end -project_helper.labels_to_add.concat(labels_to_add) if labels_to_add.any? +helper.labels_to_add.concat(labels_to_add) if labels_to_add.any? |