Skip to content

Commit

Permalink
chore(api): format logs
Browse files Browse the repository at this point in the history
  • Loading branch information
clearloop committed Aug 2, 2024
1 parent 2df5a2f commit 88d1cf0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ export default class Api {

const jobs = await this.getJobs(run.id, filter, false);
if (jobs.length > 0) {
const processed = jobs.map(j => j.name).join(' ');
core.info(`${processed} have been processed in the PR workflow`);
const processed = jobs.map(j => j.name).join(',');
core.info(`[${processed}] have been processed in the PR workflow`);
process.exit(0);
}
}
Expand Down

0 comments on commit 88d1cf0

Please sign in to comment.