1
0
Fork 0
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:
Bartek Iwańczuk 2023-03-16 18:42:29 -04:00 committed by GitHub
parent 5a1d3ea614
commit 8efda832e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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))) {