fix(dev-infra): fix typo in ng-dev config (#37862)
The logic to exclude certain types of commits (specifically 'docs' ones) was implemented inc5b125b7db
. The ng-dev config was updated in the followup commitacf3cff9ee
, 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:
parent
1801d0c650
commit
d148fdccf2
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue