fix(dev-infra): fix typo in ng-dev config (#37862)

The logic to exclude certain types of commits (specifically 'docs' ones) was implemented in c5b125b7db. The ng-dev config was updated in the followup commit acf3cff9ee, 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 changed files with 1 additions and 1 deletions

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',