From 45a8d7b3b9d73f3f0f2b5b54e2b567b0681a50bb Mon Sep 17 00:00:00 2001 From: Dawson Toth Date: Thu, 23 Jul 2026 13:59:05 -0400 Subject: [PATCH] fix: install conventionalcommits preset for semantic-release The Release workflow failed at the Semantic Release step with "Cannot find module 'conventional-changelog-conventionalcommits'". `.releaserc.json` configures @semantic-release/release-notes-generator with `preset: "conventionalcommits"`, but that preset package is not a dependency of release-notes-generator (it ships only conventional-changelog-angular), and the action only installs the plugins listed in `extra_plugins`. Add conventional-changelog-conventionalcommits so the preset resolves at release time. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 40bfd38..c96e8b0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,6 +51,7 @@ jobs: extra_plugins: | @semantic-release/commit-analyzer @semantic-release/release-notes-generator + conventional-changelog-conventionalcommits @semantic-release/npm @semantic-release/git @semantic-release/github