chore(release): 2.1.0 [skip ci]

# [2.1.0](https://github.com/simonecorsi/mawesome/compare/v2.0.0...v2.1.0) (2022-05-11)

### Bug Fixes

* removes console.log ([7841262](7841262e74))

### Features

* removes github-token need ([0dc2a51](0dc2a51ddf))
This commit is contained in:
simonecorsi 2022-05-11 14:25:46 +00:00
parent 0dc2a51ddf
commit 1343e95f52
2 changed files with 13 additions and 2 deletions

View File

@ -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) # [2.0.0](https://github.com/simonecorsi/mawesome/compare/v1.0.45...v2.0.0) (2022-05-11)

View File

@ -12780,7 +12780,7 @@ class Git {
this.push = () => this.exec(`push origin ${branch} --follow-tags`); this.push = () => this.exec(`push origin ${branch} --follow-tags`);
this.updateOrigin = (repo) => this.exec(`remote set-url origin ${repo}`); this.updateOrigin = (repo) => this.exec(`remote set-url origin ${repo}`);
this.createTag = (tag) => this.exec(`tag -a ${tag} -m "${tag}"`); 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); core.setSecret(githubToken);
const githubName = core.getInput('github-name') || 'GitHub Actions'; const githubName = core.getInput('github-name') || 'GitHub Actions';
const githubEmail = core.getInput('github-email') || 'actions@users.noreply.github.com'; const githubEmail = core.getInput('github-email') || 'actions@users.noreply.github.com';
@ -12974,7 +12974,6 @@ function main() {
accessToken: core.getInput('api-token', { required: true }), accessToken: core.getInput('api-token', { required: true }),
compactByLanguage: true, compactByLanguage: true,
}); });
console.log('sortedByLanguages :>> ', sortedByLanguages);
const rendered = yield (0, helpers_1.renderer)({ const rendered = yield (0, helpers_1.renderer)({
username: helpers_1.REPO_USERNAME, username: helpers_1.REPO_USERNAME,
stars: Object.entries(sortedByLanguages), stars: Object.entries(sortedByLanguages),