Skip to content

Commit 0d299c1

Browse files
committed
fix
1 parent d1fc164 commit 0d299c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr_comment_commands.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ jobs:
136136
});
137137
const baseSha = baseRef.object.sha;
138138
139-
const benchmarksResult = JSON.parse('${{ toJSON(steps.parse.outputs.result) }}');
140-
const benchmarks = benchmarksResult.benchmarks;
139+
// Parse the result from the previous step
140+
const benchmarks = ${{ steps.parse.outputs.result }}.benchmarks;
141141
const commentId = context.payload.comment.id;
142142
143143
// Comment to notify benchmark is starting

0 commit comments

Comments
 (0)