-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
105 lines (105 loc) · 3.76 KB
/
release-please-config.json
File metadata and controls
105 lines (105 loc) · 3.76 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
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
101
102
103
104
105
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"exclude-paths": [
".git",
".idea",
".github",
".vscode",
"openapi",
".azure-pipelines"
],
"include-component-in-tag": true,
"include-v-in-tag": true,
"separate-pull-requests": false,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"versioning": "prerelease",
"prerelase": true,
"bootstrap-sha": "b3123fb1d60eb4516b71ecf0370d48cefb891870",
"packages": {
"dotnet/src/Microsoft.Agents.M365Copilot": {
"component": "Microsoft.Agents.M365Copilot",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"prerelease": false,
"extra-files": [
"Microsoft.Agents.M365Copilot.csproj"
]
},
"dotnet/src/Microsoft.Agents.M365Copilot.Beta": {
"component": "Microsoft.Agents.M365Copilot.Beta",
"release-type": "simple",
"versioning": "prerelease",
"prerelease-type": "preview",
"prerelease": true,
"changelog-path": "CHANGELOG.md",
"extra-files": [
"Microsoft.Agents.M365Copilot.Beta.csproj"
]
},
"dotnet/src/Microsoft.Agents.M365Copilot.Core": {
"component": "Microsoft.Agents.M365Copilot.Core",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"prerelease": false,
"extra-files": [
"Microsoft.Agents.M365Copilot.Core.csproj"
]
},
"typescript/packages/agents-m365copilot": {
"component": "@microsoft/agents-m365copilot",
"release-type": "node",
"changelog-path": "CHANGELOG.md",
"prerelease": false
},
"typescript/packages/agents-m365copilot-beta": {
"component": "@microsoft/agents-m365copilot-beta",
"release-type": "node",
"versioning": "prerelease",
"prerelease-type": "preview",
"prerelease": true,
"changelog-path": "CHANGELOG.md"
},
"typescript/packages/agents-m365copilot-core": {
"component": "@microsoft/agents-m365copilot-core",
"release-type": "node",
"changelog-path": "CHANGELOG.md",
"prerelease": false,
"extra-files": [
"src/utils/Version.ts"
]
},
"python/packages/microsoft_agents_m365copilot": {
"component": "microsoft_agents_m365copilot",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"prerelease": false,
"extra-files": [
"pyproject.toml",
"microsoft_agents_m365copilot/_version.py"
]
},
"python/packages/microsoft_agents_m365copilot_beta": {
"component": "microsoft_agents_m365copilot_beta",
"release-type": "simple",
"versioning": "prerelease",
"prerelease-type": "preview",
"prerelease": true,
"changelog-path": "CHANGELOG.md",
"extra-files": [
"pyproject.toml",
"microsoft_agents_m365copilot_beta/_version.py"
]
},
"python/packages/microsoft_agents_m365copilot_core": {
"component": "microsoft_agents_m365copilot_core",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"prerelease": false,
"extra-files": [
"pyproject.toml",
"microsoft_agents_m365copilot_core/src/_constants.py"
]
}
}
}