Skip to content

Commit 502a4e2

Browse files
committed
feat(log): display more info when successful
1 parent 3ec3135 commit 502a4e2

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

action/lib/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,10 @@ export default async function ({ token, delay, timeout }) {
4040
// get the data again
4141
result = await runs(octokit, flows)
4242
}
43+
44+
for (const run of result) {
45+
core.info(`${run.id}: ${run.name} => ${run.conclusion || 'pending'}`)
46+
}
47+
48+
core.info('all runs completed successfully!')
4349
}

0 commit comments

Comments
 (0)