ci: scope pnpm minimumReleaseAge waiver to @kunobi/* only - #8
Merged
Conversation
Replaces the blanket `minimumReleaseAge: 0` from #7 with `minimumReleaseAgeExclude: ['@kunobi/*']` so the 24h supply-chain age gate from the CI image still applies to every third-party dependency (zod, @modelcontextprotocol/sdk, rollup, biome, vitest, …) and only in-house packages we publish ourselves bypass it.
emmanuelm41
force-pushed
the
chore/scope-supply-chain-exclude
branch
from
May 27, 2026 16:47
e46af2c to
ffd6092
Compare
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.
Stacked on top of #7. Merge #7 first; GitHub will auto-retarget this PR to
main.Value
minimumReleaseAge: 0had silently disabled (zod,@modelcontextprotocol/sdk,rollup,biome,vitest, …).@kunobi/*packages that motivated fix: bump @kunobi/mcp-installer to ^0.0.7 for Copilot CLI support #7 in the first place — no workflow re-runs needed when we bump one of our own releases.zondax/_workflowsor thezondax/ubuntu-ciimage; a repo-local pnpm setting is enough.Technical
minimumReleaseAge: 0inpnpm-workspace.yamlwithminimumReleaseAgeExclude: ['@kunobi/*'].minimum-release-age(24h) continues to apply because we no longer override the value — only the exclusion list is added locally.41f2b76).