From 0be94f1826595b931449c0f0dff3701b386488aa Mon Sep 17 00:00:00 2001 From: Conventional Changelog Action Date: Sat, 16 Jan 2021 10:18:35 +0000 Subject: [PATCH] chore(release): v1.0.12 --- CHANGELOG.md | 14 +++++++------- index.js | 6 ++---- package.json | 2 +- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3b86e7..3191f54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ +## 1.0.12 (2021-01-16) + +* feat: git user now is action ([83db82b](https://github.com/simonecorsi/mawesome/commit/83db82b)) + + + ## 1.0.11 (2021-01-16) +* chore(release): v1.0.11 ([b5ae554](https://github.com/simonecorsi/mawesome/commit/b5ae554)) * fix: added required label ([be35c87](https://github.com/simonecorsi/mawesome/commit/be35c87)) @@ -25,10 +32,3 @@ -## 1.0.7 (2021-01-16) - -* chore(release): v1.0.7 ([3c133b8](https://github.com/simonecorsi/mawesome/commit/3c133b8)) -* feat: better errors ([be667ed](https://github.com/simonecorsi/mawesome/commit/be667ed)) - - - diff --git a/index.js b/index.js index e147221..77a6518 100644 --- a/index.js +++ b/index.js @@ -21307,11 +21307,9 @@ exports.default = new (class Git { this.createTag = (tag) => this.exec(`tag -a ${tag} -m "${tag}"`); const githubToken = core.getInput('github-token', { required: true }); core.setSecret(githubToken); - const gitUserName = core.getInput('git-user-name'); - const gitUserEmail = core.getInput('git-user-email'); // Set config - this.config('user.name', gitUserName); - this.config('user.email', gitUserEmail); + this.config('user.name', 'GitHub Actions'); + this.config('user.email', 'actions@users.noreply.github.com'); // Update the origin this.updateOrigin(`https://x-access-token:${githubToken}@github.com/${GITHUB_REPOSITORY}.git`); } diff --git a/package.json b/package.json index 3ee6b01..924854c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mawesome", - "version": "1.0.11", + "version": "1.0.12", "description": "", "main": "index.js", "scripts": {