From acf3cff9eedbcfbc4476e0597d0a3c7a883bd05f Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 25 Jun 2020 17:45:06 -0700 Subject: [PATCH] ci: exclude "docs" commit type from minBodyLength commit message validation (#37764) docs commits are sometimes trivial (e.g. an obvious typo fix) and in such cases its very akward to to write up 100 chars worth of text about why this typo fix is the best thing in the world and why it is so important and crucial that we must know why we are fixing the typo at all. After all most typos are not just typos. Or are they? We'll shall see... PR Close #37764 --- .ng-dev/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/.ng-dev/config.ts b/.ng-dev/config.ts index 359304fadb..342b3f64f7 100644 --- a/.ng-dev/config.ts +++ b/.ng-dev/config.ts @@ -4,6 +4,7 @@ import {MergeConfig} from '../dev-infra/pr/merge/config'; const commitMessage = { 'maxLength': 120, 'minBodyLength': 100, + 'minBodyLengthExcludes': ['docs'], 'types': [ 'build', 'ci',