Skip to content

Commit

Permalink
feat(policy): Make Conventional commit description configurable
Browse files Browse the repository at this point in the history
The max length for the description in a conventional commit was hardcoded
to 72 characters. This change makes it configurable.
When no value is provided in the yaml, a default of 72 is used to keep
backwards compatibility.

Signed-off-by: Wouter Dullaert <[email protected]>
  • Loading branch information
wdullaer authored and andrewrynhard committed Jan 22, 2020
1 parent 59f365a commit d97b22c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ policies:
- "type"
scopes:
- "scope"
descriptionLength: 72
- type: license
spec:
skipPaths:
Expand Down
11 changes: 8 additions & 3 deletions internal/policy/commit/check_conventional_commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ import (
// Conventional implements the policy.Policy interface and enforces commit
// messages to conform the Conventional Commit standard.
type Conventional struct {
Types []string `mapstructure:"types"`
Scopes []string `mapstructure:"scopes"`
Types []string `mapstructure:"types"`
Scopes []string `mapstructure:"scopes"`
DescriptionLength int `mapstructure:"descriptionLength"`
}

// HeaderRegex is the regular expression used for Conventional Commits
Expand Down Expand Up @@ -94,7 +95,11 @@ func (c Commit) ValidateConventionalCommit() policy.Check {
}
}

if len(groups[4]) <= 72 && len(groups[4]) != 0 {
// Provide a good default value for DescriptionLength
if c.Conventional.DescriptionLength == 0 {
c.Conventional.DescriptionLength = 72
}
if len(groups[4]) <= c.Conventional.DescriptionLength && len(groups[4]) != 0 {
return check
}
check.errors = append(check.errors, errors.Errorf("Invalid description: %s", groups[4]))
Expand Down

0 comments on commit d97b22c

Please sign in to comment.