Skip to content

Commit

Permalink
fix: escape ts benchmark syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Hill <[email protected]>
  • Loading branch information
gregdhill committed Aug 3, 2023
1 parent 3d2bd90 commit 8160a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
script: |
const [cmd, ...args] = context.payload.comment.body.split(" ")
const [runtime, pallet] = args
return `bash ./scripts/benchmark.sh -r ${runtime ?? \''*'\'} -p ${pallet ?? \''*'\'}`
return `bash ./scripts/benchmark.sh -r ${runtime ?? "\\''*'\\'"} -p ${pallet ?? "\\''*'\\'"}`
- uses: actions/github-script@v6
name: Post comment
id: comment
Expand Down

0 comments on commit 8160a94

Please sign in to comment.