diff options
Diffstat (limited to 'tools/verify_pr_title.js')
-rw-r--r-- | tools/verify_pr_title.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js index 01c47636a..ffae101ca 100644 --- a/tools/verify_pr_title.js +++ b/tools/verify_pr_title.js @@ -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", ]; |