From a7d5944d25c87a1331dc868a52bb05e5ce14b39e Mon Sep 17 00:00:00 2001 From: Gabisonfire Date: Fri, 15 Nov 2024 08:35:46 -0500 Subject: [PATCH] Adds missing body parameter (#232) --- .github/workflows/git_cliff.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/git_cliff.yml b/.github/workflows/git_cliff.yml index ea813b2..3fc3350 100644 --- a/.github/workflows/git_cliff.yml +++ b/.github/workflows/git_cliff.yml @@ -34,6 +34,6 @@ jobs: git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git feat/changelog_$(date +"%d_%m") - name: create pull request - run: gh pr create -B main -H feat/changelog_$(date +"%d_%m") --title '[skip ci] Update changelog' + run: gh pr create -B main -H feat/changelog_$(date +"%d_%m") --title '[skip ci] Update changelog' --body 'Changelog update by git-cliff' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}