diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ff372f061..575533e5c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -305,7 +305,7 @@ jobs: - name: yarn install run: yarn install - name: generate changelog - run: yarn auto-changelog --latest-version ${{ env.VERSION }} --unreleased-only + run: yarn auto-changelog --commit-limit 0 --latest-version ${{ env.VERSION }} --unreleased-only - name: package-version-to-git-release continue-on-error: true # Will fail if tag exists id: create_release diff --git a/scripts/release.sh b/scripts/release.sh index 0b70e76ad..80a54d949 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -29,4 +29,4 @@ yarn version --no-git-tag-version --no-commit-hooks --no-commit --new-version ${ # generate changelog cd ${PROJECT_DIR} -auto-changelog --latest-version ${VERSION} \ No newline at end of file +auto-changelog --commit-limit 0 --latest-version ${VERSION} \ No newline at end of file