From 30672a56c023200e90260b48ca78052385a8d653 Mon Sep 17 00:00:00 2001 From: Matt Kane Date: Thu, 6 Nov 2025 20:02:54 +0000 Subject: [PATCH] fix: correct repository name in changeset config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The changelog generator was pointing to the wrong repository (ascorbic/library-template instead of ascorbic/vitest-browser-astro), causing it to fail when trying to fetch commit information from GitHub. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .changeset/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/config.json b/.changeset/config.json index 1f81fb5..179371f 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -3,7 +3,7 @@ "changelog": [ "@changesets/changelog-github", { - "repo": "ascorbic/library-template" + "repo": "ascorbic/vitest-browser-astro" } ], "commit": false,