Skip to content

Commit d1fc164

Browse files
committed
fix benches
1 parent 5b74de6 commit d1fc164

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pr_comment_commands.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ jobs:
136136
});
137137
const baseSha = baseRef.object.sha;
138138
139-
const benchmarks = ${{ toJSON(steps.parse.outputs.result) }}.benchmarks;
139+
const benchmarksResult = JSON.parse('${{ toJSON(steps.parse.outputs.result) }}');
140+
const benchmarks = benchmarksResult.benchmarks;
140141
const commentId = context.payload.comment.id;
141142
142143
// Comment to notify benchmark is starting

0 commit comments

Comments
 (0)