Skip to content

Commit

Permalink
fix: exclude releases from changelog, fix monorepo
Browse files Browse the repository at this point in the history
Exclude releases from generated changelog and fixes pattern issues.

closes #14, closes #15, closes #17
  • Loading branch information
jrson83 committed May 18, 2023
1 parent b7277a9 commit 08dad3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion template/sparkee-cliff-monorepo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ commit_parsers = [
{ message = "^refactor", group = "Refactor" },
{ message = "^style", group = "Styling", skip = true },
{ message = "^test", group = "Testing", skip = true },
{ message = "^release:", skip = true },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore", group = "Miscellaneous Tasks", skip = true },
{ body = ".*security", group = "Security", skip = true },
Expand All @@ -62,7 +63,7 @@ protect_breaking_commits = false
filter_commits = false
# glob pattern for matching git tags.
# monorepo and single repo is diffrence.
tag_pattern = "@*"
tag_pattern = "*@[0-9]*"
# regex for skipping tags
skip_tags = ""
# regex for ignoring tags
Expand Down

0 comments on commit 08dad3a

Please sign in to comment.