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

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

module Gitlab
  module Danger
    module Weightage
      CAPACITY_MULTIPLIER = 2 # change this number to change what it means to be a reduced capacity reviewer 1/this number
      BASE_REVIEWER_WEIGHT = 1
    end
  end
end