From f1721d5cef0eb89f78583f8a78074709f9155b23 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 27 May 2020 12:54:11 -0700 Subject: [PATCH] build: update requiredBaseCommit for patch branch merges (#37316) Updates the requiredBaseCommit for merging to patch branch to the latest commit message validation fix found in the 10.0.x branch. Previously, the patch branch commit used was for the 9.1.x branch. PR Close #37316 --- .ng-dev-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ng-dev-config.ts b/.ng-dev-config.ts index 89d572b77f..aaa669ea6a 100644 --- a/.ng-dev-config.ts +++ b/.ng-dev-config.ts @@ -108,7 +108,7 @@ const merge = () => { // PRs that target either `master` or the patch branch, need to be rebased // on top of the latest commit message validation fix. 'master': '4341743b4a6d7e23c6f944aa9e34166b701369a1', - [patch]: '2a53f471592f424538802907aca1f60f1177a86d' + [patch]: '4341743b4a6d7e23c6f944aa9e34166b701369a1' }, }; return config;