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

bulk_database_actions.rb « plugins « danger - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ae47119fb84d21ebec85932ba3093217c22c21d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require_relative '../../tooling/danger/bulk_database_actions'

module Danger
  class BulkDatabaseActions < ::Danger::Plugin
    def add_suggestions_for(filename)
      Tooling::Danger::BulkDatabaseActions.new(filename, context: self).suggest
    end
  end
end