From 800336bae9a5ba4cf2536325998e4655af0a0aad Mon Sep 17 00:00:00 2001
From: Adam Setch <adam.setch@outlook.com>
Date: Wed, 24 May 2023 01:01:24 -0400
Subject: [PATCH] fix: correct typo (#22392)

---
 lib/workers/repository/update/pr/changelog/source-github.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/workers/repository/update/pr/changelog/source-github.ts b/lib/workers/repository/update/pr/changelog/source-github.ts
index 9b7bc2922b..2430d6f5b8 100644
--- a/lib/workers/repository/update/pr/changelog/source-github.ts
+++ b/lib/workers/repository/update/pr/changelog/source-github.ts
@@ -195,9 +195,9 @@ function findTagOfRelease(
   tags: string[]
 ): string | undefined {
   const regex = regEx(`(?:${packageName}|release)[@-]`, undefined, false);
-  const excactReleaseRegex = regEx(`${packageName}[@\\-_]v?${depNewVersion}`);
+  const exactReleaseRegex = regEx(`${packageName}[@\\-_]v?${depNewVersion}`);
   const exactTagsList = tags.filter((tag) => {
-    return excactReleaseRegex.test(tag);
+    return exactReleaseRegex.test(tag);
   });
   let tagName: string | undefined;
   if (exactTagsList.length) {
-- 
GitLab