@@ -1085,9 +1085,9 @@ function run() {
1085
1085
commitMessage: core.getInput('commit-message'),
1086
1086
committer: core.getInput('committer'),
1087
1087
author: core.getInput('author'),
1088
- signoff: core.getBooleanInput ('signoff'),
1088
+ signoff: core.getInput ('signoff') === 'true' ,
1089
1089
branch: core.getInput('branch'),
1090
- deleteBranch: core.getBooleanInput ('delete-branch'),
1090
+ deleteBranch: core.getInput ('delete-branch') === 'true' ,
1091
1091
branchSuffix: core.getInput('branch-suffix'),
1092
1092
base: core.getInput('base'),
1093
1093
pushToFork: core.getInput('push-to-fork'),
@@ -1098,7 +1098,7 @@ function run() {
1098
1098
reviewers: utils.getInputAsArray('reviewers'),
1099
1099
teamReviewers: utils.getInputAsArray('team-reviewers'),
1100
1100
milestone: Number(core.getInput('milestone')),
1101
- draft: core.getBooleanInput ('draft')
1101
+ draft: core.getInput ('draft') === 'true'
1102
1102
};
1103
1103
core.debug(`Inputs: ${(0, util_1.inspect)(inputs)}`);
1104
1104
yield (0, create_pull_request_1.createPullRequest)(inputs);
0 commit comments