-
Notifications
You must be signed in to change notification settings - Fork 0
/
releaserc.toml
67 lines (59 loc) · 1.85 KB
/
releaserc.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# BEGIN DOTGIT-SYNC BLOCK MANAGED
[semantic_release]
allow_zero_version = true
commit_message = "🔖 v{version} (NO-CI)\n\nAutomatically generated by python-semantic-release"
commit_parser = "commit_parser:GitmojiCommitParser"
logging_use_named_masks = false
major_on_zero = true
no_git_verify = false
tag_format = "v{version}"
# BEGIN DOTGIT-SYNC BLOCK EXCLUDED SEMANTIC_CUSTOM_VAR
version_toml = [
"pyproject.toml:tool.poetry.version",
]
# END DOTGIT-SYNC BLOCK EXCLUDED SEMANTIC_CUSTOM_VAR
[semantic_release.changelog]
changelog_file = "CHANGELOG.md"
template_dir = ".release/templates"
exclude_commit_patterns = []
[semantic_release.changelog.environment]
block_start_string = "{%"
block_end_string = "%}"
variable_start_string = "{{"
variable_end_string = "}}"
comment_start_string = "{#"
comment_end_string = "#}"
trim_blocks = false
lstrip_blocks = false
newline_sequence = "\n"
keep_trailing_newline = false
extensions = []
autoescape = true
[semantic_release.branches.main]
match = "(main|master)"
prerelease_token = "rc"
prerelease = false
[semantic_release.branches.any]
match = "(feat|fix|hotfix|chore)*"
prerelease_token = "any"
prerelease = true
[semantic_release.branches.next]
match = "next"
prerelease_token = "rc"
prerelease = true
[semantic_release.commit_author]
# BEGIN DOTGIT-SYNC BLOCK EXCLUDED SEMANTIC_CUSTOM_AUTHOR
env = "SEMANTIC_RELEASE_AUTHOR"
default = "Python Semantic Release [bot] <code+bot.release@romaindeville.fr>"
# END DOTGIT-SYNC BLOCK EXCLUDED SEMANTIC_CUSTOM_AUTHOR
[semantic_release.remote]
# BEGIN DOTGIT-SYNC BLOCK EXCLUDED SEMANTIC_CUSTOM_REMOTE
name = "origin"
type = "gitlab"
domain = "framagit.org"
token = { "env" = "PYTHON_SEMANTIC_RELEASE_TOKEN" }
# END DOTGIT-SYNC BLOCK EXCLUDED SEMANTIC_CUSTOM_REMOTE
# [semantic_release.publish]
# dist_glob_patterns = ["dist/*"]
# upload_to_vcs_release = true
# END DOTGIT-SYNC BLOCK MANAGED