run changeset version + format via pnpm script#11
Conversation
Greptile SummaryThis PR fixes a formatting mismatch in the release pipeline by introducing a Motivation: The changesets library writes Changes:
Confidence Score: 5/5Safe to merge — a minimal, well-explained fix for a real CI breakage with no side effects. The change is small and focused: one new script in No files require special attention. Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub (push to main)
participant WF as release.yml
participant CS as changesets/action
participant Script as version-packages script
participant Biome as pnpm format (Biome)
participant NPM as npm registry
GH->>WF: trigger on push to main
WF->>WF: pnpm install / build / lint / test / checks
WF->>CS: run changesets/action
alt Pending changesets exist
CS->>Script: version: pnpm run version-packages
Script->>Script: changeset version (bumps package.json, CHANGELOG.md)
Script->>Biome: pnpm format (biome format --write .)
Biome-->>Script: reformatted files
CS-->>GH: open/update "Version Packages" PR (lint-clean)
else Version Packages PR already merged
CS->>NPM: publish: pnpm changeset publish
NPM-->>GH: package published
end
Reviews (1): Last reviewed commit: "run changeset version + format via pnpm ..." | Re-trigger Greptile |
No description provided.