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

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

helper.all_changed_files.each do |filename|
  next unless filename.end_with?('.rb')
  next if filename.start_with?('spec/', 'ee/spec/', 'jh/spec/')

  bulk_database_actions.add_suggestions_for(filename)
end