chore: fix changeset package name#177
Merged
Merged
Conversation
ioannisj
approved these changes
Jun 18, 2026
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.
💡 Motivation and Context
The release workflow failed because the pending changeset referenced the Composer package name (
posthog/posthog-php) instead of the Changesets workspace package name (posthog-php). Changesets could not find that package in the workspace, sopnpm changeset versionexited before creating the release.💚 How did you test it?
pnpm install --frozen-lockfilepnpm changeset statusand confirmedposthog-phpis detected for a minor bump📝 Checklist
If releasing new changes
pnpm changesetto generate a changeset file🤖 Agent context
Autonomy: Human-driven (agent-assisted)
An agent inspected the failed release logs, identified the mismatch between the changeset package name and
package.json, and updated the existing changeset to referenceposthog-php. Validation used Changesets status output rather than creating a new changeset, because this PR only fixes release metadata for an already pending changeset.