From f001aef2dc3e27f34870849b10daa804e18a37bc 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 a4fdf0fbc1..bfcf512903 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;