Skip to content

Commit

Permalink
Update Extension Name mapping for aepsdk-ui-ios
Browse files Browse the repository at this point in the history
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()
  • Loading branch information
prudrabhat committed Sep 4, 2024
1 parent 597a1db commit 693c710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/release_notes/SDKReleaseInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 693c710

Please sign in to comment.