From f7823161aaa49c65f0db7ffe80e99dbe5f1e1afb Mon Sep 17 00:00:00 2001 From: Anthony Laye Date: Thu, 16 Jun 2022 11:37:48 -0400 Subject: [PATCH] Update add-to-project.ts --- src/add-to-project.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-to-project.ts b/src/add-to-project.ts index 4a2d11d..2efa9da 100644 --- a/src/add-to-project.ts +++ b/src/add-to-project.ts @@ -57,7 +57,7 @@ export async function addToProject(): Promise { } } else if (labelOperator === 'not') { if (labeled.length > 0 && issueLabels.some(l => labeled.includes(l))) { - core.info(`Skipping issue $(issue?.number} because it contains one of the labels: $(labeled.join(', ')}`) + core.info(`Skipping issue ${issue?.number} because it contains one of the labels: $(labeled.join(', ')}`) return } }