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
This commit is contained in:
Andrew Kushnir
2020-06-30 15:10:01 -07:00
committed by Alex Rickabaugh
parent 1801d0c650
commit d148fdccf2
+1 -1
View File
@@ -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',