mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 15:19:40 -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
|
||||
// commit from the generated changelog
|
||||
"Revert ",
|
||||
// Allow landing breaking changes that are properly marked
|
||||
"BREAKING",
|
||||
];
|
||||
|
||||
if (validPrefixes.some((prefix) => prTitle.startsWith(prefix))) {
|
||||
|
|
Loading…
Reference in a new issue