Skip to content

Commit

Permalink
build: update semantic types (#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsakaimbo committed May 7, 2020
1 parent 12b8b91 commit 579d92f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/semantic.yml
Expand Up @@ -2,14 +2,15 @@ titleOnly: true
types:
- feat
- fix
- improvement
- enhancement
- docs
- style
- refactor
- perf
- test
- tests
- build
- ci
- chore
- revert
- merge
- calypso

7 changes: 4 additions & 3 deletions make-changelog.sh
Expand Up @@ -24,7 +24,7 @@ git_log_format="%s"

# ignore types: chore, docs, style, merge
# this can be amended based on what types should be included/excluded from the release notes
git_log_incl_types="feat|fix|improvement|refactor|perf|test|build|ci|revert"
git_log_incl_types="feat|fix|enhancement|refactor|perf|tests|build|ci|revert|calypso"

# Filter commits that satisfy conventional commit format
# See: https://www.conventionalcommits.org/
Expand All @@ -40,12 +40,13 @@ git_log=$(git log --oneline --pretty=format:"$git_log_format" $last_stable_tag..
# Map of each type to its human-readable heading
type_heading_map=("feat:New Features"
"fix:Fixes"
"improvement:Improvements"
"enhancement:Enhancements"
"refactor:Refactors"
"perf:Performance Improvements"
"test:testing"
"tests:Testing"
"build:Build"
"ci:Continous Integration"
"calypso:Calypso"
"revert:Reverts")

# Returns the human-readable heading for a type
Expand Down

0 comments on commit 579d92f

Please sign in to comment.