add no-verify option

This commit is contained in:
Wolf Vollprecht 2022-12-08 20:02:16 +01:00
parent d36c8e0863
commit 3ecafdd2fc
4 changed files with 20 additions and 6 deletions

View file

@ -25,7 +25,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'),
no_verify: core.getBooleanInput('no-verify'),
}
core.debug(`Inputs: ${inspect(inputs)}`)