From 693c7105c5820778c4394a4e114313fe9298a7fc Mon Sep 17 00:00:00 2001 From: Prashanth Rudrabhat Date: Tue, 3 Sep 2024 17:17:52 -0700 Subject: [PATCH] Update Extension Name mapping for aepsdk-ui-ios Currently release notes update task fails due to a missing mapping for "ui" extension name. "ui" extension was formerly "notificationcontent". Ensure that the standardized version of `repoNames` has matching clauses SDKReleaseInfo#standardizeExtensionName() --- .github/scripts/release_notes/SDKReleaseInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/release_notes/SDKReleaseInfo.js b/.github/scripts/release_notes/SDKReleaseInfo.js index 0d52959b66..f554883894 100644 --- a/.github/scripts/release_notes/SDKReleaseInfo.js +++ b/.github/scripts/release_notes/SDKReleaseInfo.js @@ -220,7 +220,7 @@ function standardizeExtensionName(extensionName) { return EXTENSION_ENUM.CAMPAIGN_CLASSIC; case extensionName.includes("campaign"): return EXTENSION_ENUM.CAMPAIGN_STANDARD; - case extensionName === "notificationcontent": + case extensionName === "ui": return EXTENSION_ENUM.NOTIFICATION_CONTENT; case extensionName === "notificationbuilder": return EXTENSION_ENUM.NOTIFICATION_BUILDER;