Skip to content

Commit

Permalink
fix(workflow): fix quoting in "truncate-commit-message (#714)"
Browse files Browse the repository at this point in the history
  • Loading branch information
deer-wmde authored Aug 14, 2023
1 parent 0223bc4 commit b6baab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
name: Truncate commit message
id: truncate-commit-message
run: |
MSG=$(echo "${{ github.event.head_commit.message }}" | head -n 1)
MSG=$(echo '${{ github.event.head_commit.message }}' | head -n 1)
echo "msg=$MSG" >> $GITHUB_OUTPUT
-
uses: peter-evans/create-pull-request@v5
Expand Down

0 comments on commit b6baab9

Please sign in to comment.