chore(ci): allow 'Reland' PR title prefix (#18273)

This commit is contained in:
Bartek Iwańczuk 2023-03-18 17:15:45 -04:00 committed by GitHub
parent d33369c6c7
commit a5ad3a44b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,9 @@ const validPrefixes = [
// allow Revert PRs because it allows us to remove the landed
// commit from the generated changelog
"Revert ",
// allow Reland PRs because when editing the changelog, it helps us identify
// commits that were reverted, but then relanded
"Reland ",
// Allow landing breaking changes that are properly marked
"BREAKING",
];