-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelx.toml
More file actions
50 lines (42 loc) · 928 Bytes
/
relx.toml
File metadata and controls
50 lines (42 loc) · 928 Bytes
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
[project]
ecosystem = "python"
[release]
branch = "main"
tag_prefix = "v"
changelog_file = "CHANGELOG.md"
pr_title = "chore(release): {version}"
[versioning]
strategy = "conventional_commits"
initial_version = "0.7.0"
[[version_files]]
path = "pyproject.toml"
key = "project.version"
[changelog]
sections.feat = "Added"
sections.fix = "Fixed"
sections.refactor = "Changed"
sections.perf = "Changed"
sections.docs = false
sections.chore = false
sections.ci = false
sections.build = false
sections.style = false
sections.test = false
[publish]
enabled = true
provider = "uv"
repository = "pypi"
dist_dir = "dist"
trusted_publishing = false
oidc = false
token_env = "PYPI_API_TOKEN"
[github]
token_env = "GITHUB_TOKEN"
release_branch_prefix = "relx/release"
pending_label = "autorelease: pending"
tagged_label = "autorelease: tagged"
[monorepo]
enabled = true
release_mode = "release_set"
[workspace]
cascade_bumps = false