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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--lib/helpers/edit_on_gitlab.rb3
2 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4373581e..80ca533d 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ See [LICENSE](LICENSE).
## Projects we pull from
-There are currently 4 products that are pulled and generate the docs website:
+There are currently 5 products that are pulled and generate the docs website:
- [GitLab Enterprise Edition](https://gitlab.com/gitlab-org/gitlab-ee)
- [GitLab Community Edition](https://gitlab.com/gitlab-org/gitlab-ce)
diff --git a/lib/helpers/edit_on_gitlab.rb b/lib/helpers/edit_on_gitlab.rb
index 658b6407..48b0010c 100644
--- a/lib/helpers/edit_on_gitlab.rb
+++ b/lib/helpers/edit_on_gitlab.rb
@@ -17,6 +17,9 @@ module Nanoc::Helpers
elsif product == "runner"
# gitlab-runner repo
gitlab_url = "https://gitlab.com/gitlab-org/gitlab-#{product}/blob/master/docs/#{docs_content_filename}"
+ elsif product == "charts"
+ # GitLab Helm chart repo
+ gitlab_url = "https://gitlab.com/#{product}/gitlab/blob/master/doc/#{docs_content_filename}"
elsif %w[ce ee].include?(product)
# gitlab-ce and gitlab-ee repos
if product == "ee"