[WIP] Update action run logs for better clarity#527
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…package) Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR fixes a CI failure in the release workflow by removing the private monorepo package @objectstack/spec-monorepo from a changeset file. The root package is marked as "private": true and should not be versioned or published through changesets.
Changes:
- Removed
@objectstack/spec-monorepofrom the changeset file that was causing the workflow error
| @@ -1,5 +1,4 @@ | |||
| --- | |||
There was a problem hiding this comment.
The PR title "Update action run logs for better clarity" does not match the actual changes made in this pull request. The change removes a private monorepo package from a changeset file to fix a CI workflow error, not anything related to action run logs. Consider updating the PR title to something like "Fix changeset workspace error by removing private monorepo package" to accurately reflect the changes.
Fix Changeset Workspace Error ✅
Successfully fixed the CI failure in the release workflow.
Plan:
@objectstack/spec-monorepofrom the changeset filepnpm run versionlocallyRoot Cause:
The changeset file
.changeset/migrate-to-tsup.mdincorrectly referenced@objectstack/spec-monorepo, which is the private root package of the monorepo, not a workspace package that can be published.Solution:
Removed the line
"@objectstack/spec-monorepo": patchfrom the changeset file. The root package is marked as"private": trueinpackage.jsonand should not be included in changesets.Verification:
pnpm run versionruns successfully without errorsThe fix is minimal and surgical - only one line removed from the changeset file.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.