lib/release_tools/project/infrastructure/gitlab_dedicated/team.rb (16 lines of code) (raw):
# frozen_string_literal: true
module ReleaseTools
module Project
module Infrastructure
module GitlabDedicated
class Team < Project::BaseProject
REMOTES = {
canonical: 'git@gitlab.com:gitlab-com/gl-infra/gitlab-dedicated/team.git'
}.freeze
def self.default_branch
'main'
end
end
end
end
end
end