Skip to content

Commit

Permalink
tools: fix lint-pr-url message
Browse files Browse the repository at this point in the history
PR-URL: #37304
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
aduh95 authored and targos committed May 1, 2021
1 parent 2ba6db3 commit af8b385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/lint-pr-url.mjs
Expand Up @@ -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.
Expand Down

0 comments on commit af8b385

Please sign in to comment.