diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-18 10:34:06 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-18 10:34:06 +0000 |
commit | 859a6fb938bb9ee2a317c46dfa4fcc1af49608f0 (patch) | |
tree | d7f2700abe6b4ffcb2dcfc80631b2d87d0609239 /Dangerfile | |
parent | 446d496a6d000c73a304be52587cd9bbc7493136 (diff) | |
download | gitlab-ce-859a6fb938bb9ee2a317c46dfa4fcc1af49608f0.tar.gz |
Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42
Diffstat (limited to 'Dangerfile')
-rw-r--r-- | Dangerfile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Dangerfile b/Dangerfile index cba7226d4b9..34e0efa027a 100644 --- a/Dangerfile +++ b/Dangerfile @@ -1,12 +1,9 @@ # frozen_string_literal: true -require_relative 'lib/gitlab_danger' -require_relative 'lib/gitlab/danger/request_helper' +require_relative 'tooling/gitlab_danger' +require_relative 'tooling/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') +Dir["danger/plugins/*.rb"].sort.each { |f| danger.import_plugin(f) } return if helper.release_automation? |