Add support for signed commits

This commit is contained in:
rustyclock 2024-07-19 10:31:08 +09:00
parent a7dcd19d46
commit a8ea6b6d63
No known key found for this signature in database
GPG key ID: F17DE04FE5DEA261
8 changed files with 27419 additions and 2211 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)}`)