Move input next to commit related inputs for context

This commit is contained in:
Peter Evans 2020-07-31 16:56:04 +09:00
parent bf7dd38b26
commit ee482f51bd
3 changed files with 6 additions and 6 deletions

View file

@ -11,6 +11,7 @@ async function run(): Promise<void> {
commitMessage: core.getInput('commit-message'),
committer: core.getInput('committer'),
author: core.getInput('author'),
signoff: core.getInput('signoff') === 'true',
branch: core.getInput('branch'),
branchSuffix: core.getInput('branch-suffix'),
base: core.getInput('base'),
@ -22,8 +23,7 @@ async function run(): Promise<void> {
reviewers: utils.getInputAsArray('reviewers'),
teamReviewers: utils.getInputAsArray('team-reviewers'),
milestone: Number(core.getInput('milestone')),
draft: core.getInput('draft') === 'true',
signoff: core.getInput('signoff') === 'true'
draft: core.getInput('draft') === 'true'
}
core.debug(`Inputs: ${inspect(inputs)}`)