We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e764dd4 commit 9943d08Copy full SHA for 9943d08
.github/workflows/bench.yml
@@ -146,8 +146,8 @@ jobs:
146
- name: Get commit message
147
id: get-commit-message
148
run: |
149
- COMMIT_MESSAGE="$(git log --format=%B -n 1 ${{ github.sha }})"
150
- echo "COMMIT_MESSAGE=${COMMIT_MESSAGE}" >> $GITHUB_ENV
+ COMMIT_MESSAGE=$(git log --format=%B -n 1 ${{ github.sha }} | tr '\n' ' ' | sed 's/"/\\"/g')
+ echo "COMMIT_MESSAGE=${COMMIT_MESSAGE}" >> "$GITHUB_ENV"
151
152
- name: Update Index
153
id: update-index
0 commit comments