diff options
author | Adam Niedzielski <adamsunday@gmail.com> | 2016-12-23 11:08:09 +0100 |
---|---|---|
committer | Adam Niedzielski <adamsunday@gmail.com> | 2016-12-23 11:08:18 +0100 |
commit | db8ee6672cf49a2eed4e244080246f21a9e14dd9 (patch) | |
tree | 138ffe499fe34eca2c5b23d5d5cb6018a81f6649 /lib | |
parent | f9e59516a259215fb75a4ac85b1814ca04ec4e8f (diff) | |
download | gitlab-ce-db8ee6672cf49a2eed4e244080246f21a9e14dd9.tar.gz |
Rename "autodeploy" to "auto deploy"auto-deploy-with-space
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/template/gitlab_ci_yml_template.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/template/gitlab_ci_yml_template.rb b/lib/gitlab/template/gitlab_ci_yml_template.rb index d19b0a52043..9d2ecee9756 100644 --- a/lib/gitlab/template/gitlab_ci_yml_template.rb +++ b/lib/gitlab/template/gitlab_ci_yml_template.rb @@ -15,7 +15,7 @@ module Gitlab { 'General' => '', 'Pages' => 'Pages', - 'Autodeploy' => 'autodeploy' + 'Auto deploy' => 'autodeploy' } end @@ -28,7 +28,7 @@ module Gitlab end def dropdown_names(context) - categories = context == 'autodeploy' ? ['Autodeploy'] : ['General', 'Pages'] + categories = context == 'autodeploy' ? ['Auto deploy'] : ['General', 'Pages'] super().slice(*categories) end end |