From 9b82e8c1efc74af112507c1a9dbd0806b9cde43b Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 19 Nov 2020 20:36:46 -0500 Subject: [PATCH] Fix missing parenthesis (#197) --- src/IssueProcessor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IssueProcessor.ts b/src/IssueProcessor.ts index 1016f5a5..28faf975 100644 --- a/src/IssueProcessor.ts +++ b/src/IssueProcessor.ts @@ -250,7 +250,7 @@ export class IssueProcessor { await this.closeIssue(issue, closeMessage, closeLabel); } else { core.info( - `Stale ${issueType} is not old enough to close yet (hasComments? ${issueHasComments}, hasUpdate? ${issueHasUpdate}` + `Stale ${issueType} is not old enough to close yet (hasComments? ${issueHasComments}, hasUpdate? ${issueHasUpdate})` ); } }