diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 9b9fcc1cae..20428c9fe7 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -37,6 +37,7 @@ on: - monorepo - angular - bot + - bot-discord - bot-slack - bot-telegram suffix: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index ab290a9a2a..9c4c52eff8 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -40,6 +40,7 @@ on: - monorepo - angular - bot + - bot-discord - bot-slack - bot-telegram mode: diff --git a/.github/workflows/stable-release.yml b/.github/workflows/stable-release.yml index 93739a6f09..82447f0efb 100644 --- a/.github/workflows/stable-release.yml +++ b/.github/workflows/stable-release.yml @@ -11,6 +11,7 @@ on: - monorepo - angular - bot + - bot-discord - bot-slack - bot-telegram bump: diff --git a/release.config.json b/release.config.json index 28c1f7615f..433fdf2c43 100644 --- a/release.config.json +++ b/release.config.json @@ -32,6 +32,11 @@ "versionSource": "@copilotkit/bot", "sharedVersion": true }, + "bot-discord": { + "packages": ["@copilotkit/bot-discord"], + "versionSource": "@copilotkit/bot-discord", + "sharedVersion": false + }, "bot-slack": { "packages": ["@copilotkit/bot-slack"], "versionSource": "@copilotkit/bot-slack", diff --git a/scripts/release/lib/config.ts b/scripts/release/lib/config.ts index a861b3fae9..e7b39d1b96 100644 --- a/scripts/release/lib/config.ts +++ b/scripts/release/lib/config.ts @@ -11,6 +11,7 @@ export type ReleaseScope = | "monorepo" | "angular" | "bot" + | "bot-discord" | "bot-slack" | "bot-telegram";