mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
chore(ci): allow 'BREAKING' PR title prefix (#18238)
So that we can land PRs like https://github.com/denoland/deno/pull/18237 or https://github.com/denoland/deno/pull/18094
This commit is contained in:
parent
5a1d3ea614
commit
8efda832e2
1 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,8 @@ const validPrefixes = [
|
||||||
// allow Revert PRs because it allows us to remove the landed
|
// allow Revert PRs because it allows us to remove the landed
|
||||||
// commit from the generated changelog
|
// commit from the generated changelog
|
||||||
"Revert ",
|
"Revert ",
|
||||||
|
// Allow landing breaking changes that are properly marked
|
||||||
|
"BREAKING",
|
||||||
];
|
];
|
||||||
|
|
||||||
if (validPrefixes.some((prefix) => prTitle.startsWith(prefix))) {
|
if (validPrefixes.some((prefix) => prTitle.startsWith(prefix))) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue