From 616c9b83303d0dbd50b4e6bc383e89ed5cb70785 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Wed, 4 Nov 2020 14:19:06 +0100 Subject: [PATCH] - fix lint error --- src/transform.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transform.ts b/src/transform.ts index 6c11283..01cb438 100644 --- a/src/transform.ts +++ b/src/transform.ts @@ -70,7 +70,7 @@ export function buildChangelog( if (!matched) { // we allow to have pull requests included in an "uncategorized" category for (const [category, pullRequests] of categorized) { - if (category.labels.length == 0) { + if (category.labels.length === 0) { pullRequests.push(body) break }