diff --git a/.github/scripts/release_notes/SDKReleaseInfo.js b/.github/scripts/release_notes/SDKReleaseInfo.js index b09956ea40..09cb1c11ad 100644 --- a/.github/scripts/release_notes/SDKReleaseInfo.js +++ b/.github/scripts/release_notes/SDKReleaseInfo.js @@ -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) } diff --git a/.github/scripts/release_notes/constants.js b/.github/scripts/release_notes/constants.js index 733fcfbc95..bc86ad7c39 100644 --- a/.github/scripts/release_notes/constants.js +++ b/.github/scripts/release_notes/constants.js @@ -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({ diff --git a/.github/scripts/release_notes/index.js b/.github/scripts/release_notes/index.js index 9d8bb330c8..852261a229 100644 --- a/.github/scripts/release_notes/index.js +++ b/.github/scripts/release_notes/index.js @@ -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 }