From 79e3a1e323619efe3a79a07f5d57f6680faede40 Mon Sep 17 00:00:00 2001
From: David Woods <d@vidwoods.com>
Date: Thu, 2 Feb 2023 14:10:18 -0500
Subject: [PATCH] Fixed link to Secure Coding Guidelines

Old link was to a hard-coded link that redirected users to a new url.

New link uses relative path that works in compiled documentation.
---
 doc/development/contributing/merge_request_workflow.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/development/contributing/merge_request_workflow.md b/doc/development/contributing/merge_request_workflow.md
index aee37de977456..20127304bbe4f 100644
--- a/doc/development/contributing/merge_request_workflow.md
+++ b/doc/development/contributing/merge_request_workflow.md
@@ -224,7 +224,7 @@ requirements.
 1. Working and clean code that is commented where needed.
 1. The change is evaluated to [limit the impact of far-reaching work](https://about.gitlab.com/handbook/engineering/development/#reducing-the-impact-of-far-reaching-work).
 1. [Performance guidelines](../merge_request_concepts/performance.md) have been followed.
-1. [Secure coding guidelines](https://gitlab.com/gitlab-com/gl-security/security-guidelines) have been followed.
+1. [Secure coding guidelines](../secure_coding_guidelines.md) have been followed.
 1. [Application and rate limit guidelines](../merge_request_concepts/rate_limits.md) have been followed.
 1. [Documented](../documentation/index.md) in the `/doc` directory.
 1. If your MR touches code that executes shell commands, reads or opens files, or
-- 
GitLab