1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

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",
];