From af8b3852a8e4628e6255a4c23985661712491227 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Wed, 10 Feb 2021 11:18:23 +0100 Subject: [PATCH] tools: fix lint-pr-url message PR-URL: https://github.com/nodejs/node/pull/37304 Reviewed-By: Darshan Sen Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott --- tools/lint-pr-url.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lint-pr-url.mjs b/tools/lint-pr-url.mjs index 3b491d26e389cb..0ebbfdd079671d 100755 --- a/tools/lint-pr-url.mjs +++ b/tools/lint-pr-url.mjs @@ -28,7 +28,7 @@ for await (const line of diff) { } else if (!validatePrUrl(line.match(prUrlDefinition)?.[1])) { console.warn( `::warning file=${currentFile},line=${currentLine++},col=${line.length}` + - '::pr-url doesn\'t match the actual PR URL.' + '::pr-url doesn\'t match the URL of the current PR.' ); } else if (line[0] !== '-') { // Increment line counter if line is not being deleted.