From c8f7fc22c77882ae4c737c76fda7d474bf5e87b2 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Wed, 3 Jun 2020 14:46:51 -0700 Subject: [PATCH] refactor(dev-infra): change required base commit sha (#37424) Update the commit sha to require that PRs have been rebased beyond the one which has new header requirements so we don't get failures after merging PR Close #37424 --- .ng-dev/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ng-dev/config.ts b/.ng-dev/config.ts index bfcf512903..03a0437120 100644 --- a/.ng-dev/config.ts +++ b/.ng-dev/config.ts @@ -107,8 +107,8 @@ const merge = () => { requiredBaseCommits: { // 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]: '4341743b4a6d7e23c6f944aa9e34166b701369a1' + 'master': '5aeb9a4124922d8ac08eb73b8f322905a32b0b3a', + [patch]: '27b95ba64a5d99757f4042073fd1860e20e3ed24' }, }; return config;