Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(backend): support flutter & rn in cliff config #1705

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ commit_parsers = [
{ message = ".*sessionator.*", skip = true },
{ message = "^.*\\(android\\):", skip = true },
{ message = "^.*\\(ios\\):", skip = true },
{ message = "^.*\\(flutter\\):", skip = true },
{ message = "^.*\\(rn\\):", skip = true },
{ message = "^docs", group = "<!-- 7 -->:books: Documentation", default_scope = "other" },
{ message = "^feat", group = "<!-- 0 -->:sparkles: New features" },
{ message = "^test", group = "<!-- 3 -->:test_tube: Testing", skip = true },
Expand All @@ -80,7 +82,7 @@ tag_pattern = "v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
ignore_tags = "^(android|ios)"
ignore_tags = "^(android|ios|flutter|rn)"
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
Expand Down
Loading