Skip to content

Commit

Permalink
chore: add semantic commit parser options (#75)
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Moore <122481442+moorec-aws@users.noreply.github.com>
  • Loading branch information
moorec-aws committed Feb 21, 2024
1 parent 9575aea commit acc4dde
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,27 @@ fail_under = 90
major_on_zero = false
tag_format = "{version}"

[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test",
]
minor_tags = []
patch_tags = [
"chore",
"feat",
"fix",
"refactor",
]

[tool.semantic_release.publish]
upload_to_vcs_release = false

Expand Down

0 comments on commit acc4dde

Please sign in to comment.