From d148fdccf2b53c2e3980f56c22315f31882777fc Mon Sep 17 00:00:00 2001 From: Andrew Kushnir Date: Tue, 30 Jun 2020 15:10:01 -0700 Subject: [PATCH] fix(dev-infra): fix typo in ng-dev config (#37862) The logic to exclude certain types of commits (specifically 'docs' ones) was implemented in https://github.com/angular/angular/commit/c5b125b7db50914840849a8d86cbb3304d2f4e68. The ng-dev config was updated in the followup commit https://github.com/angular/angular/commit/acf3cff9eedbcfbc4476e0597d0a3c7a883bd05f, but there was a typo that prevented the new logic from being activated. This commit updates the name of the config option in the ng-dev config to the right one (minBodyLengthTypeExcludes). PR Close #37862 --- .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 342b3f64f7..2208ab7a26 100644 --- a/.ng-dev/config.ts +++ b/.ng-dev/config.ts @@ -4,7 +4,7 @@ import {MergeConfig} from '../dev-infra/pr/merge/config'; const commitMessage = { 'maxLength': 120, 'minBodyLength': 100, - 'minBodyLengthExcludes': ['docs'], + 'minBodyLengthTypeExcludes': ['docs'], 'types': [ 'build', 'ci',