Skip to content

Commit

Permalink
Fix yaml.dump
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Oct 13, 2021
1 parent 08ce0ed commit 2cd974e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

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

2 changes: 1 addition & 1 deletion src/labeler.ts
Expand Up @@ -331,7 +331,7 @@ export class Labeler {
description: repoLabel.description
});
}
core.info(`👉 Current labels\n${yaml.safeDump(labels).toString()}`);
core.info(`👉 Current labels\n${yaml.dump(labels).toString()}`);
}

private logInfo(message: string) {
Expand Down

0 comments on commit 2cd974e

Please sign in to comment.