mirror of
https://forgejo.stefka.eu/jiriks74/create-pull-request.git
synced 2025-01-18 16:01:06 +01:00
Add support for committing with no-verify
This commit is contained in:
parent
2827897dcc
commit
a9029b0f6a
5 changed files with 15 additions and 3 deletions
|
@ -31,6 +31,7 @@ export interface Inputs {
|
|||
teamReviewers: string[]
|
||||
milestone: number
|
||||
draft: boolean
|
||||
noVerify: boolean
|
||||
}
|
||||
|
||||
export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||
|
@ -192,7 +193,8 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
|
|||
inputs.branch,
|
||||
branchRemoteName,
|
||||
inputs.signoff,
|
||||
inputs.addPaths
|
||||
inputs.addPaths,
|
||||
inputs.noVerify
|
||||
)
|
||||
core.endGroup()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue