diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c5672c..1e04a49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [2.1.0](https://github.com/simonecorsi/mawesome/compare/v2.0.0...v2.1.0) (2022-05-11) + + +### Bug Fixes + +* removes console.log ([7841262](https://github.com/simonecorsi/mawesome/commit/7841262e741f05debb7ffe6fed636a508a8f7c12)) + + +### Features + +* removes github-token need ([0dc2a51](https://github.com/simonecorsi/mawesome/commit/0dc2a51ddf3cf93414afd674ed3c34ec681f3e4b)) + # [2.0.0](https://github.com/simonecorsi/mawesome/compare/v1.0.45...v2.0.0) (2022-05-11) diff --git a/index.js b/index.js index f5fb452..d5effad 100644 --- a/index.js +++ b/index.js @@ -12780,7 +12780,7 @@ class Git { this.push = () => this.exec(`push origin ${branch} --follow-tags`); this.updateOrigin = (repo) => this.exec(`remote set-url origin ${repo}`); this.createTag = (tag) => this.exec(`tag -a ${tag} -m "${tag}"`); - const githubToken = core.getInput('github-token', { required: true }); + const githubToken = core.getInput('api-token', { required: true }); core.setSecret(githubToken); const githubName = core.getInput('github-name') || 'GitHub Actions'; const githubEmail = core.getInput('github-email') || 'actions@users.noreply.github.com'; @@ -12974,7 +12974,6 @@ function main() { accessToken: core.getInput('api-token', { required: true }), compactByLanguage: true, }); - console.log('sortedByLanguages :>> ', sortedByLanguages); const rendered = yield (0, helpers_1.renderer)({ username: helpers_1.REPO_USERNAME, stars: Object.entries(sortedByLanguages),