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

Dangerfile - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 228190cd530a118aac96f3ae93ecafa0434fdbcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require_relative 'lib/gitlab_danger'

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

unless helper.release_automation?
  GitlabDanger.new(helper.gitlab_helper).rule_names.each do |file|
    danger.import_dangerfile(path: File.join('danger', file))
  end
end