Skip to content

Commit be04de6

Browse files
committed
fix(debug): prime is not an array
1 parent 0e46d0f commit be04de6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action/lib/deduplicate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default async function ({ octokit, workflow_id, run_id, sha }) {
3737
const prime = cancellable.pop()
3838

3939
core.debug(`determined ${prime.id} to be the prime run of this workflow`)
40-
core.debug(inspect(prime.map(run => ({ id: run.id, name: run.name }))))
40+
core.debug(inspect(prime))
4141

4242
for (const run of cancellable) {
4343
core.info(`${run.id}: ${run.name} => canceling`)

0 commit comments

Comments
 (0)