lib/release_tools/project/deployer.rb (10 lines of code) (raw):
# frozen_string_literal: true
module ReleaseTools
module Project
class Deployer < BaseProject
REMOTES = {
canonical: 'git@gitlab.com:gitlab-com/gl-infra/deployer.git',
ops: 'git@ops.gitlab.net:gitlab-com/gl-infra/deployer.git'
}.freeze
end
end
end