From 149a5cd933cdf29da2c86490198b74de403595c0 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 15 Feb 2022 23:29:16 +0100 Subject: [PATCH] do not have any commits, just PRs in the autochangelog instead of the 4 commits appended by default --- .github/workflows/publish.yml | 2 +- scripts/release.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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