diff options
author | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-16 10:09:41 +0200 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-06-20 14:48:28 -0500 |
commit | 8039856d80ce710f69af611f58857b29b74712b4 (patch) | |
tree | 0a2fd6a1c6e4ed94532be0deaa83d99a7e553bca | |
parent | 5d12189296e173616ee980c60943680ed2d7d061 (diff) | |
download | gitlab-ce-8039856d80ce710f69af611f58857b29b74712b4.tar.gz |
Add changelog item, fix rubocop issue
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | lib/gitlab/template/gitlab_ci_yml.rb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 0e19ae06715..f26512c87ba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -102,6 +102,7 @@ v 8.9.0 (unreleased) - An indicator is now displayed at the top of the comment field for confidential issues. - Show categorised search queries in the search autocomplete - RepositoryCheck::SingleRepositoryWorker public and private methods are now instrumented + - Dropdown for `.gitlab-ci.yml` templates - Improve issuables APIs performance when accessing notes !4471 - Add sorting dropdown to tags page !4423 - External links now open in a new tab diff --git a/lib/gitlab/template/gitlab_ci_yml.rb b/lib/gitlab/template/gitlab_ci_yml.rb index 20377499ac9..da7273b8d70 100644 --- a/lib/gitlab/template/gitlab_ci_yml.rb +++ b/lib/gitlab/template/gitlab_ci_yml.rb @@ -9,7 +9,7 @@ module Gitlab def categories { "General" => '', - "Pages" =>'Pages' + "Pages" => 'Pages' } end |