mirror of
https://forgejo.stefka.eu/jiriks74/create-pull-request.git
synced 2025-01-18 16:01:06 +01:00
feat: add input to enable gpg commit signing
This commit is contained in:
parent
548adff9dc
commit
0524c01297
9 changed files with 8015 additions and 7 deletions
|
@ -16,6 +16,7 @@ export interface Inputs {
|
|||
committer: string
|
||||
author: string
|
||||
signoff: boolean
|
||||
gpgSign: boolean
|
||||
branch: string
|
||||
deleteBranch: boolean
|
||||
branchSuffix: string
|
||||
|
@ -173,7 +174,8 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
|
|||
inputs.base,
|
||||
inputs.branch,
|
||||
branchRemoteName,
|
||||
inputs.signoff
|
||||
inputs.signoff,
|
||||
inputs.gpgSign
|
||||
)
|
||||
core.endGroup()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue