fix: remove prefix from git-branch parameter

releases/v3
Diego Henrique Pagani 2022-07-04 11:42:07 -03:00
parent 2a7cc0e9fb
commit ed8c9f5217
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ async function run() {
const gitUserName = core.getInput('git-user-name') const gitUserName = core.getInput('git-user-name')
const gitUserEmail = core.getInput('git-user-email') const gitUserEmail = core.getInput('git-user-email')
const gitPush = core.getBooleanInput('git-push') const gitPush = core.getBooleanInput('git-push')
const gitBranch = core.getInput('git-branch') const gitBranch = core.getInput('git-branch').replace('refs/heads/', '')
const tagPrefix = core.getInput('tag-prefix') const tagPrefix = core.getInput('tag-prefix')
const preset = !core.getInput('config-file-path') ? core.getInput('preset') : '' const preset = !core.getInput('config-file-path') ? core.getInput('preset') : ''
const preCommitFile = core.getInput('pre-commit') const preCommitFile = core.getInput('pre-commit')