-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
action_config.toml
100 lines (86 loc) · 2.4 KB
/
action_config.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[tool.python]
enabled = true
pre_release_tag = "dev"
[tool.python.lint]
black_version = "24.1.1"
ruff_version = "0.2.1"
isort_version = "5.13.2"
[tool.python.pip]
enabled = true
[tool.python.conda]
enabled = false
recipe_dir = "./conda"
extra_conda_dep_channels = ["krande"]
platforms = "ubuntu-latest,windows-latest,macos-latest"
# Anaconda Related
use_anaconda_server = false
owner = "Krande"
label = "main"
#
# info
#
# If you are uploading to public/private anaconda you need to set this
# secrets.CONDA_API_TOKEN
#
# Or if you will use a private QUETZ server you need to set these
# secrets.QUETZ_API_KEY
# secrets.QUETZ_URL
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
# info
#
# This will generate a release for your project if added
# generate_release_auto.yaml expects to find this under github repo secrets
# secrets.SOURCE_KEY
# This key needs to be a deploy key with write privileges on this source repository where you plan to do release
# PS! do not enable Do not allow bypassing the above settings under branch protection, if you do we can not push
version_variables = [
'./src/frontend/package.json:"version"',
'./src/frontend/package-lock.json:"version"',
]
assets = []
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
logging_use_named_masks = false
major_on_zero = true
tag_format = "v{version}"
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.changelog]
template_dir = "templates"
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = []
[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.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"chore",
"feat",
"fix"
]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = true
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.semantic_release.publish]
upload_to_vcs_release = true