2019-04-24 08:08:33 -04:00
|
|
|
# frozen_string_literal: true
|
2019-09-06 07:21:53 -04:00
|
|
|
|
2021-03-12 07:09:33 -05:00
|
|
|
require 'gitlab-dangerfiles'
|
2019-09-06 07:21:53 -04:00
|
|
|
|
2021-03-12 07:09:33 -05:00
|
|
|
Gitlab::Dangerfiles.import_plugins(danger)
|
|
|
|
danger.import_plugin('danger/plugins/*.rb')
|
2019-04-04 07:26:01 -04:00
|
|
|
|
2020-05-25 08:08:23 -04:00
|
|
|
return if helper.release_automation?
|
|
|
|
|
2021-03-12 07:09:33 -05:00
|
|
|
project_helper.rule_names.each do |rule|
|
|
|
|
danger.import_dangerfile(path: File.join('danger', rule))
|
2019-04-04 07:26:01 -04:00
|
|
|
end
|
2020-05-25 08:08:23 -04:00
|
|
|
|
2020-05-26 08:08:22 -04:00
|
|
|
anything_to_post = status_report.values.any? { |data| data.any? }
|
|
|
|
|
2021-03-12 07:09:33 -05:00
|
|
|
if helper.ci? && anything_to_post
|
2020-05-26 08:08:22 -04:00
|
|
|
markdown("**If needed, you can retry the [`danger-review` job](#{ENV['CI_JOB_URL']}) that generated this comment.**")
|
|
|
|
end
|