We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b0e18 commit ebdb399Copy full SHA for ebdb399
1 file changed
.github/workflows/benchmark.yml
@@ -770,7 +770,8 @@ jobs:
770
SUMMARY=""
771
if [ -f bench_results/summary.txt ]; then
772
FORMATTED=$(column -t -s $'\t' "bench_results/summary.txt" 2>/dev/null) || FORMATTED=$(cat "bench_results/summary.txt")
773
- SUMMARY=$(printf "\n### Benchmark Summary\n\n\`\`\`\n%s\n\`\`\`" "$FORMATTED")
+ # shellcheck disable=SC2016
774
+ SUMMARY=$(printf '\n### Benchmark Summary\n\n```\n%s\n```' "$FORMATTED")
775
fi
776
777
if [ -n "$EXISTING_ISSUE" ]; then
0 commit comments