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:
authorSuzanne Selhorn <sselhorn@gitlab.com>2022-09-21 23:36:41 +0300
committerAmy Qualls <aqualls@gitlab.com>2022-09-21 23:36:41 +0300
commit2afb47e318959c563bf6bf9c80e99f67c3a64295 (patch)
treed218b6822b366a828dd6600a11963a1aa75c19f1
parent0c7e647a0bfc4d5f61b2ef15d34d02b417e53d18 (diff)
Updated handbook URLs
-rw-r--r--.gitlab/issue_templates/release.md2
-rw-r--r--doc/architecture.md2
-rw-r--r--doc/index.md2
-rw-r--r--doc/raketasks.md2
-rw-r--r--lib/tasks/redirects.rake2
5 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab/issue_templates/release.md b/.gitlab/issue_templates/release.md
index 7411d788..c2c00b03 100644
--- a/.gitlab/issue_templates/release.md
+++ b/.gitlab/issue_templates/release.md
@@ -51,7 +51,7 @@ After release post is live on the 22nd, or the next Monday morning if the releas
After the 22nd of each month:
1. [ ] Create a release issue for the
- [next TW](https://about.gitlab.com/handbook/engineering/ux/technical-writing/#regularly-scheduled-tasks)
+ [next TW](https://about.gitlab.com/handbook/product/ux/technical-writing/#regularly-scheduled-tasks)
and assign it to them.
1. [ ] **Major releases only.** Update
[OutdatedVersions.yml](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/.vale/gitlab/OutdatedVersions.yml)
diff --git a/doc/architecture.md b/doc/architecture.md
index c82063dc..fde04405 100644
--- a/doc/architecture.md
+++ b/doc/architecture.md
@@ -106,7 +106,7 @@ improve maintainability:
Extra configuration for security jobs to override their defaults and make them work
better in the pipeline.
- [`.gitlab/ci/test.gitlab-ci.yml`](https://gitlab.com/gitlab-org/gitlab-docs/-/blob/main/.gitlab/ci/test.gitlab-ci.yml):
- Code tests and jobs used for [`gitlab-docs` maintenance](https://about.gitlab.com/handbook/engineering/ux/technical-writing/#regularly-scheduled-tasks).
+ Code tests and jobs used for [`gitlab-docs` maintenance](https://about.gitlab.com/handbook/product/ux/technical-writing/#regularly-scheduled-tasks).
### Rebuild the docs site Docker images
diff --git a/doc/index.md b/doc/index.md
index d1429bd4..8f858117 100644
--- a/doc/index.md
+++ b/doc/index.md
@@ -19,7 +19,7 @@ For more information about the docs site, go to the [architecture page](architec
## Technical Writing team member tasks
-GitLab [Technical Writing team members](https://about.gitlab.com/handbook/engineering/ux/technical-writing/) perform
+GitLab [Technical Writing team members](https://about.gitlab.com/handbook/product/ux/technical-writing/) perform
the following maintenance tasks on the GitLab Docs site:
- Publish [releases](releases.md).
diff --git a/doc/raketasks.md b/doc/raketasks.md
index b6405716..1ffd0f5c 100644
--- a/doc/raketasks.md
+++ b/doc/raketasks.md
@@ -25,7 +25,7 @@ Any time you rebuild the site using `nanoc`, the feature flags tables are popula
## Clean up redirects
The `docs:clean_redirects` rake task automates the removal of the expired redirect files,
-which is part of the monthly [scheduled TW tasks](https://about.gitlab.com/handbook/engineering/ux/technical-writing/#regularly-scheduled-tasks)
+which is part of the monthly [scheduled TW tasks](https://about.gitlab.com/handbook/product/ux/technical-writing/#regularly-scheduled-tasks)
as seen in the "Local tasks" section of the [issue template](https://gitlab.com/gitlab-org/technical-writing/-/blob/main/.gitlab/issue_templates/tw-monthly-tasks.md):
1. Make sure you have `jq` installed. On macOS:
diff --git a/lib/tasks/redirects.rake b/lib/tasks/redirects.rake
index 8935e645..7130a1e4 100644
--- a/lib/tasks/redirects.rake
+++ b/lib/tasks/redirects.rake
@@ -32,7 +32,7 @@ namespace :docs do
redirects_yaml = "#{source_dir}/content/_data/redirects.yaml"
today = Time.now.utc.to_date
mr_title = "Clean up docs redirects - #{today}"
- mr_description = "Monthly cleanup of docs redirects.</br><p>See https://about.gitlab.com/handbook/engineering/ux/technical-writing/#regularly-scheduled-tasks</p></br></hr></br><p>_Created automatically: https://gitlab.com/gitlab-org/gitlab-docs/-/blob/main/doc/raketasks.md#clean-up-redirects_</p>"
+ mr_description = "Monthly cleanup of docs redirects.</br><p>See https://about.gitlab.com/handbook/product/ux/technical-writing/#regularly-scheduled-tasks</p></br></hr></br><p>_Created automatically: https://gitlab.com/gitlab-org/gitlab-docs/-/blob/main/doc/raketasks.md#clean-up-redirects_</p>"
redirects_branch = "docs-clean-redirects-#{today}"
commit_message = "Update docs redirects #{today}"