From 85935415e86157bede081bff58dfc07b4d33b5c1 Mon Sep 17 00:00:00 2001 From: Samuel Bodin <1637651+bodinsamuel@users.noreply.github.com> Date: Wed, 24 Nov 2021 16:40:30 +0100 Subject: [PATCH] fix: cast boolean --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 89446ae2..008cae00 100644 --- a/src/index.ts +++ b/src/index.ts @@ -21,7 +21,7 @@ const INDEX_NAME = CRAWLER_NAME.replace(/[ /]/g, '-').replace( const ALGOLIA_APP_ID = core.getInput('algolia-app-id'); const ALGOLIA_API_KEY = core.getInput('algolia-api-key'); const SITE_URL = core.getInput('site-url'); -const OVERRIDE_CONFIG = core.getInput('override-config'); +const OVERRIDE_CONFIG = core.getInput('override-config') === 'true'; interface Comment { id: number;