-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (52 loc) · 1.74 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
[tool.black]
line-length = 100
[tool.pytest.ini_options]
addopts = ["-vvv", "-n", "1", "--log-level", "WARNING", "--color", "yes"]
filterwarnings = ['ignore:AnsibleCollectionFinder has already been configured']
testpaths = ["tests"]
[tool.semantic_release]
allow_zero_version = false
tag_format = "{version}"
version_variables = [
"galaxy.yml:version:tf", # Tag format
]
assets = []
build_command = "./scripts/build.sh"
build_command_env = []
commit_message = "chore(release): {version}"
commit_parser = "conventional"
logging_use_named_masks = false
major_on_zero = true
no_git_verify = false
[tool.semantic_release.branches.main]
match = "*"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.changelog]
exclude_commit_patterns = ['test', 'ci']
mode = "update"
insertion_flag = "# CHANGELOG"
template_dir = "templates"
[tool.semantic_release.changelog.default_templates]
changelog_file = "CHANGELOG.md"
output_format = "md"
mask_initial_release = true
[tool.semantic_release.commit_author]
env = "SEMANTIC_RELEASE_AUTHOR"
default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options]
minor_tags = ["feat", "Feat"]
patch_tags = ["fix", "Fix", "perf", "Perf", "docs", "Docs"]
other_allowed_tags = ["build", "chore", "ci", "style", "refactor", "test"]
allowed_tags = ["feat", "Feat", "fix", "Fix", "perf", "Perf", "build", "chore", "ci", "docs", "Docs", "style", "refactor", "test"]
default_bump_level = 0
parse_squash_commits = true
ignore_merge_commits = false
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
insecure = false
[tool.semantic_release.publish]
dist_glob_patterns = ["infra-openshift_virtualization_migration-*.tar.gz"]
upload_to_vcs_release = true