ci: exclude CHANGELOG.md from formatting - #38
Merged
Conversation
release-please writes CHANGELOG.md with two blank lines before each section heading, which oxfmt rejects, so `vp check` failed on the release PR and blocked the merge that publishes. The file is generated and owned by release-please, so it is excluded rather than reformatted — reformatting it would only be undone on the next release.
priosshrsth
enabled auto-merge (squash)
August 19, 2026 11:37
priosshrsth
disabled auto-merge
August 19, 2026 11:38
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.
CI fails on release PR #37: oxfmt rejects the
CHANGELOG.mdrelease-please generates, because it writes two blank lines before each section heading. That blocks the merge that publishes to npm, so no 0.0.6 can ship until this lands.The file is generated and owned by release-please, so
.prettierignoreexcludes it rather than reformatting — oxfmt reads.prettierignoreby default, and reformatting would just be undone on the next release anyway.Verified: reproduced the failure locally with the exact CHANGELOG content from #37, then confirmed
vp checkpasses with the ignore in place.Once this is on main, release-please updates #37 automatically and its CI should go green.
🤖 Generated with Claude Code