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

require_relative 'lib/gitlab_danger'
require_relative 'lib/gitlab/danger/request_helper'

danger.import_plugin('danger/plugins/helper.rb')
danger.import_plugin('danger/plugins/roulette.rb')
danger.import_plugin('danger/plugins/changelog.rb')
danger.import_plugin('danger/plugins/sidekiq_queues.rb')

return if helper.release_automation?

gitlab_danger = GitlabDanger.new(helper.gitlab_helper)

gitlab_danger.rule_names.each do |file|
  danger.import_dangerfile(path: File.join('danger', file))
end

anything_to_post = status_report.values.any? { |data| data.any? }

if gitlab_danger.ci? && anything_to_post
  markdown("**If needed, you can retry the [`danger-review` job](#{ENV['CI_JOB_URL']}) that generated this comment.**")
end