Skip to content

Commit ebdb399

Browse files
committed
ci: simplify benchmark summary quoting
1 parent 20b0e18 commit ebdb399

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/benchmark.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,8 @@ jobs:
770770
SUMMARY=""
771771
if [ -f bench_results/summary.txt ]; then
772772
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")
773+
# shellcheck disable=SC2016
774+
SUMMARY=$(printf '\n### Benchmark Summary\n\n```\n%s\n```' "$FORMATTED")
774775
fi
775776
776777
if [ -n "$EXISTING_ISSUE" ]; then

0 commit comments

Comments
 (0)