From 580f94a955a7d91052d07dcc22fea663a39a0415 Mon Sep 17 00:00:00 2001 From: Chris Arderne Date: Thu, 9 Jul 2026 17:30:19 +0100 Subject: [PATCH] chore: ignore plugins package in changesets (#4210) ## Summary Excludes the non-published plugins workspace from Changesets release planning so it cannot drive public package version bumps. ## Verification Ran `pnpm run changeset:version` with temporary changesets for `@trigger.dev/plugins` and `@trigger.dev/core`; the ignored workspace produced no release-driver updates, and the public package changeset versioned normally. --- .changeset/config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.changeset/config.json b/.changeset/config.json index caecef79c..f135929f2 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -14,7 +14,8 @@ "updateInternalDependencies": "patch", "ignore": [ "webapp", - "supervisor" + "supervisor", + "@trigger.dev/plugins" ], "___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { "onlyUpdatePeerDependentsWhenOutOfRange": true