diff --git a/.changeset/config.json b/.changeset/config.json index a5132feb39..e3b685197e 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -3,12 +3,7 @@ "access": "public", "baseBranch": "origin/main", "changelog": "@changesets/cli/changelog", - "commit": [ - "@changesets/cli/commit", - { - "skipCI": false - } - ], + "commit": false, "ignore": [], "linked": [], "privatePackages": { diff --git a/.github/scripts/changeset-version-with-postbump.mts b/.github/scripts/changeset-version-with-postbump.mts index dad7578635..4a6a688244 100644 --- a/.github/scripts/changeset-version-with-postbump.mts +++ b/.github/scripts/changeset-version-with-postbump.mts @@ -22,11 +22,6 @@ function bumpPatch(version: string): string { echo('šŸ“¦ Running changeset version...'); await $`yarn changeset version`; -// Undo the commit that changeset version made, but keep the changes -// This allows the changesets action to create a single commit with all changes -echo('šŸ”™ Undoing changeset commit (keeping changes)...'); -await $`git reset --soft HEAD~1`; - // Changesets doesn't bump or update the dependency-profiles package, so we need to do that manually echo('\nšŸ”„ Updating dependency-profiles...'); if (fs.existsSync(DEPENDENCY_PROFILES_DIR)) {