diff options
-rw-r--r-- | packages/monorepo-scripts/src/publish.ts | 4 | ||||
-rw-r--r-- | packages/monorepo-scripts/src/utils/discord.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/monorepo-scripts/src/publish.ts b/packages/monorepo-scripts/src/publish.ts index 923248360..f11f998b8 100644 --- a/packages/monorepo-scripts/src/publish.ts +++ b/packages/monorepo-scripts/src/publish.ts @@ -14,7 +14,7 @@ import { constants } from './constants'; import { Package, PackageToNextVersion, VersionChangelog } from './types'; import { changelogUtils } from './utils/changelog_utils'; import { configs } from './utils/configs'; -import { alertDiscord } from './utils/discord'; +import { alertDiscordAsync } from './utils/discord'; import { DocGenerateAndUploadUtils } from './utils/doc_generate_and_upload_utils'; import { publishReleaseNotesAsync } from './utils/github_release_utils'; import { utils } from './utils/utils'; @@ -90,7 +90,7 @@ async function confirmAsync(message: string): Promise<void> { if (!isDryRun && releaseNotes) { try { - await alertDiscord(releaseNotes); + await alertDiscordAsync(releaseNotes); } catch (e) { utils.log("Couldn't alert discord, error: ", e.message, '. Please alert manually.'); } diff --git a/packages/monorepo-scripts/src/utils/discord.ts b/packages/monorepo-scripts/src/utils/discord.ts index 116b1b908..ed10b1cc3 100644 --- a/packages/monorepo-scripts/src/utils/discord.ts +++ b/packages/monorepo-scripts/src/utils/discord.ts @@ -4,7 +4,7 @@ import { constants } from '../constants'; import { utils } from './utils'; -export const alertDiscord = async (releaseNotes: string): Promise<boolean> => { +export const alertDiscordAsync = async (releaseNotes: string): Promise<boolean> => { const webhookUrl = constants.discordAlertWebhookUrl; if (!webhookUrl) { utils.log('Not alerting to discord because webhook url not set'); |