From b81d780de5111293d72c3116484b574440eb12ee Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Thu, 14 Aug 2025 22:23:01 -0500 Subject: [PATCH] fix: update input handling for 'update-readme' to ensure boolean conversion from string --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index b4e490d..d05b979 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -35,7 +35,7 @@ export function getInputs() { const pypiPackages = core.getInput('pypi-packages') const powershellModules = core.getInput('powershell-modules') const jsonOutputPath = core.getInput('json-output-path') - const updateReadme = core.getBooleanInput('update-readme') + const updateReadme = core.getInput('update-readme').toLowerCase() === 'true' const commitMessage = core.getInput('commit-message') const readmePath = core.getInput('readme-path')