From f4668f89b9493cbfcb3a40c339219246bdf88016 Mon Sep 17 00:00:00 2001 From: Vincent Jousse Date: Mon, 7 Oct 2024 17:00:47 +0200 Subject: [PATCH] fix: don't run git-cliff twice --- .github/workflows/changelog.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 9e6403682..0c3a0f07b 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -30,14 +30,14 @@ jobs: OUTPUT: CHANGELOG-cliff.md GITHUB_REPO: ${{ github.repository }} - - name: Generate latest changes - uses: orhun/git-cliff-action@v4 - id: git-cliff-latest - with: - config: cliff.toml - args: --verbose --exclude-path "data/" --bump --unreleased - env: - GITHUB_REPO: ${{ github.repository }} + # - name: Generate latest changes + # uses: orhun/git-cliff-action@v4 + # id: git-cliff-latest + # with: + # config: cliff.toml + # args: --verbose --exclude-path "data/" --bump --unreleased + # env: + # GITHUB_REPO: ${{ github.repository }} - name: Extract branch name shell: bash @@ -56,7 +56,7 @@ jobs: branch: chore/update-changelog-${{ steps.git-cliff.outputs.version }} delete-branch: true title: 'chore(release): Release ${{ steps.git-cliff.outputs.version }}' - body: ${{ steps.git-cliff-latest.outputs.content }} + body: ${{ steps.git-cliff.outputs.content }} labels: | pending-release automated pr