fix(config): add projectId to LinearConfigSchema (Zod was stripping it)#1142
Merged
zbigniewsobiecki merged 1 commit intodevfrom Apr 18, 2026
Merged
fix(config): add projectId to LinearConfigSchema (Zod was stripping it)#1142zbigniewsobiecki merged 1 commit intodevfrom
zbigniewsobiecki merged 1 commit intodevfrom
Conversation
…ng it PR #1138 added projectId to the configMapper, but Zod's LinearConfigSchema didn't declare projectId — and z.object() defaults to "strip" mode, silently removing unknown keys during .parse(). So projectId survived the mapper but got dropped by validateConfig(), never reaching augmentProjectSecrets() or the LinearPMProvider. Result: new Linear issues created by splitting / planning agents had no project assignment despite the configMapper fix. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #1138 added
projectIdto the configMapper so it would survive the DB → ProjectConfig translation. But Zod'sLinearConfigSchemainsrc/config/schema.tsdidn't declareprojectId— andz.object()defaults to strip mode, silently removing unknown keys during.parse().Verified live in the dev router container:
Result: new Linear issues created by splitting/planning agents had no project assignment, despite the configMapper fix being deployed.
Fix
One-line addition:
projectId: z.string().optional()inLinearConfigSchema.Test plan
preserves linear.projectId through validationtreats linear.projectId as optional🤖 Generated with Claude Code