From b0bbfaefd666de85662ac7b7bfbd0fcafdd30f65 Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Tue, 25 Jul 2023 12:23:15 +0200 Subject: [PATCH] Handle Renovate default commitMessageExtra description --- .changelog/767.bugfix.md | 1 + .github/workflows/ci-renovate.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .changelog/767.bugfix.md diff --git a/.changelog/767.bugfix.md b/.changelog/767.bugfix.md new file mode 100644 index 000000000..b409fc27f --- /dev/null +++ b/.changelog/767.bugfix.md @@ -0,0 +1 @@ +Handle Renovate default commitMessageExtra description diff --git a/.github/workflows/ci-renovate.yml b/.github/workflows/ci-renovate.yml index 147ac48dc..2b134859a 100644 --- a/.github/workflows/ci-renovate.yml +++ b/.github/workflows/ci-renovate.yml @@ -34,7 +34,7 @@ jobs: echo "FILE_NAME=.changelog/${{ github.event.pull_request.number }}.internal.md" >> $GITHUB_OUTPUT - name: Create Change Log file run: | - echo ${{ github.event.pull_request.title }} > ${{ steps.vars.outputs.FILE_NAME }} + echo "${{ github.event.pull_request.title }}" > ${{ steps.vars.outputs.FILE_NAME }} - name: Commit Change Log file run: | # Set git user email and name to match author of the last commit.