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 @@ export interface Inputs {
commitMessage: string
committer: string
author: string
signoff: boolean
branch: string
branchSuffix: string
base: string
@ -23,7 +24,6 @@ export interface Inputs {
teamReviewers: string[]
milestone: number
draft: boolean
signoff: boolean
}
export async function createPullRequest(inputs: Inputs): Promise<void> {