-
-
Notifications
You must be signed in to change notification settings - Fork 711
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
47 lines (47 loc) · 1.38 KB
/
release-please-config.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/refs/heads/main/schemas/config.json",
"release-type": "simple",
"bump-minor-pre-major": true,
"include-v-in-tag": true,
"separate-pull-requests": true,
"always-update": true,
"packages": {
".": {
"release-type": "node",
"include-component-in-tag": false,
"exclude-paths": [
".env.sample",
".gitignore",
".release-please-manifest.json",
"compose.yaml",
"release-please-config.json",
"packages/seanime-extensions",
"packages/seanime-extension"
],
"pull-request-title-pattern": "chore: release ${version}"
},
"packages/seanime-extensions": {
"release-type": "node",
"include-component-in-tag": true,
"include-v-in-tag": true,
"pull-request-title-pattern": "chore(seanime-extensions): release ${version}",
"extra-files": [
{
"type": "json",
"path": "src/extensions/aiostreams-plugin/manifest.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "src/extensions/aiostreams-torrent-provider/manifest.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "src/extensions/stremio-custom-source/manifest.json",
"jsonpath": "$.version"
}
]
}
}
}