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:
parent
0dc2a51ddf
commit
1343e95f52
12
CHANGELOG.md
12
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)
|
||||
|
||||
|
||||
|
3
index.js
3
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),
|
||||
|
Loading…
x
Reference in New Issue
Block a user