Skip to content

Commit

Permalink
Replace double quote with single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
ppawlowski committed Jul 15, 2024
1 parent 671b90c commit 86e9658
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy_helm_chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ jobs:
id: last_commit_msg
run: |
git fetch --depth=1 origin main
echo 'LAST_COMMIT_MSG=$(git log --format=%B -n 1 FETCH_HEAD)' >> $GITHUB_ENV
LAST_COMMIT_MSG=$(git log --format=%B -n 1 FETCH_HEAD | sed "s/'/'\\\\''/g; 1s/^/'/; \$s/\$/'/")
echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG" >> $GITHUB_ENV
- name: Send notification
uses: slackapi/[email protected]
Expand Down

0 comments on commit 86e9658

Please sign in to comment.