From a27020c13528542173505c78211cc59cd398b18d Mon Sep 17 00:00:00 2001 From: Alexander Kachkaev Date: Wed, 31 May 2023 01:49:55 +0100 Subject: [PATCH] Undo unwanted change in diff --- src/labeler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/labeler.ts b/src/labeler.ts index cd220bd6..3bbe23c2 100644 --- a/src/labeler.ts +++ b/src/labeler.ts @@ -15,7 +15,7 @@ export async function run() { try { const token = core.getInput('repo-token'); const configPath = core.getInput('configuration-path', {required: true}); - const syncLabels = core.getBooleanInput('sync-labels', {required: false}); + const syncLabels = !!core.getBooleanInput('sync-labels', {required: false}); const dot = !!core.getBooleanInput('dot', {required: false}); const prNumber = getPrNumber();