Skip to content

Commit 140a9d5

Browse files
authored
Merge pull request #117 from backstage/blam/opt-out-of-autoassign
use `getBooleanInput` otherwise it defaults to string
2 parents 65af7b9 + 6bb7418 commit 140a9d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pr-sync/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525
const owningTeams = core.getInput('owning-teams', { required: false });
2626
const token = core.getInput('github-token', { required: true });
2727
const shouldAutoAssign =
28-
core.getInput('auto-assign', { required: false }) ?? true;
28+
core.getBooleanInput('auto-assign', { required: false }) ?? true;
2929

3030
const userClient = github.getOctokit(token);
3131
const client = createAppClient();

0 commit comments

Comments
 (0)