mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
build: fix 'deno_core' PR title lint (#24183)
This commit is contained in:
parent
ee48647065
commit
1400f57449
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ if (prTitle == null) {
|
||||||
console.log("PR title:", prTitle);
|
console.log("PR title:", prTitle);
|
||||||
|
|
||||||
if (
|
if (
|
||||||
prTitle.startsWith("chore:") && prTitle.contains("deno_core") &&
|
prTitle.startsWith("chore:") && prTitle.includes("deno_core") &&
|
||||||
(prTitle.contains("upgrade") || prTitle.contains("update"))
|
(prTitle.includes("upgrade") || prTitle.includes("update"))
|
||||||
) {
|
) {
|
||||||
console.error([
|
console.error([
|
||||||
"Please categorize this deno_core upgrade as a 'feat:', 'fix:' or a ",
|
"Please categorize this deno_core upgrade as a 'feat:', 'fix:' or a ",
|
||||||
|
|
Loading…
Reference in a new issue