-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (69 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (69 loc) · 1.94 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "central-workflows"
version = "0.1.0"
requires-python = "==3.13.*"
dependencies = []
[dependency-groups]
dev = [
"pre-commit",
"pytest>=8.4.2",
"python-semantic-release>=10.4.0",
]
# Version control
#------------------------------------------------------------------------
[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version",
]
assets = []
# build_command_env = ['GH_TOKEN']
# build_command = ''
commit_message = "ci(semantic-release): automatic update - v{version}"
commit_parser = "conventional"
logging_use_named_masks = false
allow_zero_version = true
major_on_zero = true
no_git_verify = false
tag_format = "v{version}"
upload_to_release = true
[tool.semantic_release.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "FacsimiLab Bot <195262995+facsimilab-bot@users.noreply.github.com>"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat", "docs"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.branches.release]
match = "release|release*"
prerelease = false
[tool.semantic_release.branches.main]
match = "main"
prerelease = false
[tool.semantic_release.branches.develop]
match = "develop|dev"
prerelease = true
prerelease_token = "beta"
[tool.semantic_release.branches.featfix]
match = "feat/*|fix/*"
[tool.semantic_release.branches.docs]
match = "docs/*"
[tool.semantic_release.changelog.default_templates]
changelog_file = "CHANGELOG.md"
[tool.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
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
insecure = false