feat: allow email and user to be overriden

This commit is contained in:
Kyle 2020-04-28 11:10:51 -04:00
parent c2b35d1095
commit e213308b3f
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ Toolkit.run(async tools => {
try {
const current = pkg.version.toString()
// set git user
await tools.runInWorkspace('git', ['config', 'user.name', '"Automated Version Bump"'])
await tools.runInWorkspace('git', ['config', 'user.email', '"gh-action-bump-version@users.noreply.github.com"'])
await tools.runInWorkspace('git', ['config', 'user.name', `"${process.env.GITHUB_USER || "Automated Version Bump"}"`])
await tools.runInWorkspace('git', ['config', 'user.email', `"${process.env.GITHUB_EMAIL || "gh-action-bump-version@users.noreply.github.com"}"`])
const currentBranch = /refs\/[a-zA-Z]+\/(.*)/.exec(process.env.GITHUB_REF)[1]
console.log('currentBranch:', currentBranch)