Skip to content

Commit

Permalink
change UI library release notes name
Browse files Browse the repository at this point in the history
  • Loading branch information
spoorthipujariadobe committed Jun 21, 2024
1 parent 2aaa58d commit ac70996
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/release_notes/SDKReleaseInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ function standardizeExtensionName(extensionName) {
return EXTENSION_ENUM.CAMPAIGN_STANDARD;
case extensionName === "notificationcontent":
return EXTENSION_ENUM.NOTIFICATION_CONTENT;
case extensionName === "ui":
return EXTENSION_ENUM.UI;
case extensionName === "notificationbuilder":
return EXTENSION_ENUM.NOTIFICATION_BUILDER;
default:
throw Error("unsupported extension name : " + extensionName)
}
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/release_notes/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const EXTENSION_ENUM = Object.freeze({
CAMPAIGN_STANDARD: "Campaign Standard",
CAMPAIGN_CLASSIC: "Campaign Classic",
NOTIFICATION_CONTENT: "Notification Content Extension",
UI: "UI"
NOTIFICATION_BUILDER: "Notification Builder"
})

const PLATFORM_ENUM = Object.freeze({
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/release_notes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ console.log(`Start to fetch release info from GitHub created after [${convertToD
releaseInfo.extension === EXTENSION_ENUM.BOM ||
releaseInfo.extension === EXTENSION_ENUM.EDGE_BRIDGE ||
releaseInfo.extension === EXTENSION_ENUM.NOTIFICATION_CONTENT ||
releaseInfo.extension === EXTENSION_ENUM.UI) {
releaseInfo.extension === EXTENSION_ENUM.NOTIFICATION_BUILDER) {
continue
}

Expand Down

0 comments on commit ac70996

Please sign in to comment.