-
Notifications
You must be signed in to change notification settings - Fork 11
/
release-please-config.json
77 lines (76 loc) · 2.47 KB
/
release-please-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
{
"bootstrap-sha": "5445327dd19538ff79ab6f981ac36ea262423049",
"last-release-sha": "7c5725a33d1dcbd210a9b2e07382ffcb675d3eb1",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"group-pull-request-title-pattern": "chore: GCDS Components Release ${version}",
"pull-request-title-pattern": "chore: GCDS Components Release ${version}",
"include-component-in-tag": true,
"packages": {
"packages/angular": {
"component": "gcds-components-angular",
"changelog-path": ""
},
"packages/react": {
"component": "gcds-components-react",
"changelog-path": ""
},
"packages/vue": {
"component": "gcds-components-vue",
"changelog-path": ""
},
"packages/web": {
"component": "gcds-components",
"changelog-path": ""
},
"packages/react-ssr": {
"component": "gcds-components-react-ssr",
"changelog-path": ""
}
},
"changelog-sections": [
{ "type": "feat", "section": ":rocket: New Features" },
{ "type": "feature", "section": ":rocket: New Features" },
{ "type": "fix", "section": ":bug: :wrench: Bug Fixes" },
{ "type": "perf", "section": ":sparkles: Performance Improvements" },
{ "type": "docs", "section": ":pencil: Documentation" },
{ "type": "style", "section": ":art: Styles" },
{ "type": "refactor", "section": ":arrows_counterclockwise: Code Refactoring" },
{ "type": "revert", "section": "Reverts", "hidden": true },
{ "type": "chore", "section": "Patch", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "build", "section": "Build System", "hidden": true },
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
],
"release-type": "node",
"plugins": [
{
"type": "node-workspace",
"updatePeerDependencies": true
},
{
"type": "linked-versions",
"groupName": "GCDS Components",
"components": [
"gcds-components-angular",
"gcds-components-react",
"gcds-components-react-ssr",
"gcds-components-vue",
"gcds-components"
]
},
{
"type": "group-priority",
"groups": [
"gcds-components",
"gcds-components-angular",
"gcds-components-react",
"gcds-components-react-ssr",
"gcds-components-vue"
]
}
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}