Add support for signed commits (#3055)

This commit is contained in:
Ravi 2024-07-25 22:12:45 +09:00 committed by Peter Evans
parent ba864ad40c
commit 22fb2d9a65
8 changed files with 27416 additions and 2208 deletions

View file

@ -27,7 +27,8 @@ async function run(): Promise<void> {
reviewers: utils.getInputAsArray('reviewers'),
teamReviewers: utils.getInputAsArray('team-reviewers'),
milestone: Number(core.getInput('milestone')),
draft: core.getBooleanInput('draft')
draft: core.getBooleanInput('draft'),
signCommit: core.getBooleanInput('sign-commit'),
}
core.debug(`Inputs: ${inspect(inputs)}`)