From 56e7a39513e3a772b11d892965ef1e75497e2103 Mon Sep 17 00:00:00 2001 From: Thiago Locks Date: Mon, 14 Oct 2024 16:30:09 -0400 Subject: [PATCH] fix: update the helpUrl (#2458) The helpUrl was returning 404 --- commitlint.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.ts b/commitlint.config.ts index c1ba7c152b..7060910c5b 100644 --- a/commitlint.config.ts +++ b/commitlint.config.ts @@ -7,5 +7,5 @@ export default { 'scope-case': [2, 'always', 'lower-case'], }, ignores: [(message) => /^chore\(release\): .+$/m.test(message)], - helpUrl: 'https://kongponents.konghq.com/contributing/getting-started.html', + helpUrl: 'https://kongponents.konghq.com/guide/contributing.html', }