Skip to content

Commit 3b8abe5

Browse files
author
Daniel McKenzie
authored
Remove console.logs from main.js (#1)
1 parent 020c3d1 commit 3b8abe5

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,3 @@ The code in this project is released under the [MIT](license).
5757
## Credits
5858

5959
- Inspired by [Babel's](https://github.com/babel/actions/tree/v2/generate-lerna-changelog) changelog Github Action
60-
- [Lerna Changelog](https://github.com/lerna/lerna-changelog) which this Github Action wraps

main.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,4 @@ const tagTo = core.getInput('to', {
1515
});
1616

1717
const changelog = exec(`node ${lernaChangelog} --tag-from ${tagFrom} --tag-to ${tagTo}`);
18-
19-
console.log(changelog);
20-
console.log(JSON.stringify(changelog));
21-
22-
core.setOutput('changelog', JSON.stringify(changelog));
18+
core.setOutput('changelog', JSON.stringify(changelog));

0 commit comments

Comments
 (0)