From 4ad101f340c830faa5af5844d14a66c4b561269c Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 24 Aug 2026 22:56:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Skip=20generated=20CHANGELOG.md?= =?UTF-8?q?=20in=20oxfmt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changesets writes the changelogs, and its output does not match oxfmt's markdown style. Every version PR failed the format check as a result, blocking the release. The files are generated, so exclude them. --- .oxfmtrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.oxfmtrc.json b/.oxfmtrc.json index 1a2f9f8..9d0db7b 100644 --- a/.oxfmtrc.json +++ b/.oxfmtrc.json @@ -6,5 +6,5 @@ "singleQuote": true, "objectWrap": "preserve", "trailingComma": "es5", - "ignorePatterns": [] + "ignorePatterns": ["**/CHANGELOG.md"] }