37 lines
940 B
Ruby
37 lines
940 B
Ruby
module Gitlab
|
|
module Template
|
|
class GitlabCiYmlTemplate < BaseTemplate
|
|
def content
|
|
explanation = "# This file is a template, and might need editing before it works on your project."
|
|
[explanation, super].join("\n")
|
|
end
|
|
|
|
class << self
|
|
def extension
|
|
'.gitlab-ci.yml'
|
|
end
|
|
|
|
def categories
|
|
{
|
|
'General' => '',
|
|
'Pages' => 'Pages',
|
|
'Auto deploy' => 'autodeploy'
|
|
}
|
|
end
|
|
|
|
def base_dir
|
|
Rails.root.join('vendor/gitlab-ci-yml')
|
|
end
|
|
|
|
def finder(project = nil)
|
|
Gitlab::Template::Finders::GlobalTemplateFinder.new(self.base_dir, self.extension, self.categories)
|
|
end
|
|
|
|
def dropdown_names(context)
|
|
categories = context == 'autodeploy' ? ['Auto deploy'] : ['General', 'Pages']
|
|
super().slice(*categories)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|