-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_config.json
96 lines (96 loc) · 2.77 KB
/
release_config.json
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
{
"semantic_release": {
"assets": [],
"branches": {
"main": {
"match": "(main|master)",
"prerelease_token": "rc",
"prerelease": false
}
},
"build_command_env": [],
"version_variables": [
"gr_app.py:__version__",
"k8s/deployment.yaml:image"
],
"changelog": {
"default_templates": {
"changelog_file": "CHANGELOG.md",
"output_format": "md",
"mask_initial_release": false
},
"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": false
},
"exclude_commit_patterns": [],
"mode": "init",
"insertion_flag": "<!-- version list -->",
"template_dir": "templates"
},
"commit_author": {
"env": "GIT_COMMIT_AUTHOR",
"default": "semantic-release <semantic-release>"
},
"commit_message": "{version}\n\nAutomatically generated by python-semantic-release",
"commit_parser": "angular",
"commit_parser_options": {
"minor_tags": [
"feat"
],
"patch_tags": [
"fix",
"perf"
],
"other_allowed_tags": [
"build",
"chore",
"ci",
"docs",
"style",
"refactor",
"test"
],
"allowed_tags": [
"feat",
"fix",
"perf",
"build",
"chore",
"ci",
"docs",
"style",
"refactor",
"test"
],
"default_bump_level": 0
},
"logging_use_named_masks": false,
"major_on_zero": true,
"allow_zero_version": true,
"remote": {
"name": "origin",
"type": "github",
"ignore_token_for_push": false,
"insecure": false
},
"no_git_verify": false,
"tag_format": "v{version}",
"publish": {
"dist_glob_patterns": [
"dist/*"
],
"upload_to_vcs_release": true
}
}
}