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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-03 12:09:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-03 12:09:42 +0300
commitcb48c93abf57768d171e9f8a2f23838a7ce8da07 (patch)
tree7ff519ac90cce63e3e43139c61fe3b65df73e62e /app/finders/template_finder.rb
parentef9e4ec7a68ace1137f68c19efee470c13631f1d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/finders/template_finder.rb')
-rw-r--r--app/finders/template_finder.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/finders/template_finder.rb b/app/finders/template_finder.rb
index 78c8392f1cd..9f7fca154ec 100644
--- a/app/finders/template_finder.rb
+++ b/app/finders/template_finder.rb
@@ -6,7 +6,8 @@ class TemplateFinder
VENDORED_TEMPLATES = HashWithIndifferentAccess.new(
dockerfiles: ::Gitlab::Template::DockerfileTemplate,
gitignores: ::Gitlab::Template::GitignoreTemplate,
- gitlab_ci_ymls: ::Gitlab::Template::GitlabCiYmlTemplate
+ gitlab_ci_ymls: ::Gitlab::Template::GitlabCiYmlTemplate,
+ metrics_dashboard_ymls: ::Gitlab::Template::MetricsDashboardTemplate
).freeze
class << self