Skip to content

Commit

Permalink
fix: cast boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Nov 24, 2021
1 parent d79ec2c commit 8593541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8593541

Please sign in to comment.