Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dangerfile « architecture « danger - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8cfbab394f6735bb921849e234a67ba55e690ed (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
27
# frozen_string_literal: true

BLUEPRINT_LABEL = 'Architecture Evolution Blueprint'

return unless helper.ci?

blueprint_changes = helper.changed_files(%r{^doc/architecture/blueprints/.*})

BLUEPRINT_SHORT_MESSAGE = <<~MSG
This merge request might require a review from a [Coach Engineer](https://about.gitlab.com/handbook/engineering/architecture/workflow/).
MSG

BLUEPRINT_LONG_MESSAGE = <<~MSG
## Architecture Evolution Review

#{BLUEPRINT_SHORT_MESSAGE}

Following files, that may require the additional review, have been changed:
#{helper.markdown_list(blueprint_changes.to_set)}
MSG

if blueprint_changes.any?
  message(BLUEPRINT_SHORT_MESSAGE)
  markdown(BLUEPRINT_LONG_MESSAGE)

  helper.labels_to_add.push(BLUEPRINT_LABEL) unless helper.mr_has_labels?(BLUEPRINT_LABEL)
end