From 02be193fccd41c4fc3c43861243b4ed616c86860 Mon Sep 17 00:00:00 2001 From: Alem Tuzlak Date: Thu, 18 Jun 2026 19:28:25 +0200 Subject: [PATCH] ci(release): make @copilotkit/bot-discord a releasable scope --- .github/workflows/canary.yml | 1 + .github/workflows/publish-release.yml | 1 + .github/workflows/stable-release.yml | 1 + release.config.json | 5 +++++ scripts/release/lib/config.ts | 1 + 5 files changed, 9 insertions(+) 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";