-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
73 lines (73 loc) · 2.1 KB
/
release-please-config.json
File metadata and controls
73 lines (73 loc) · 2.1 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"skip-github-release": true,
"draft-pull-request": true,
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverted Changes"
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "chore",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "test",
"hidden": true
},
{
"type": "ci",
"hidden": true
},
{
"type": "hotfix",
"hidden": true
}
],
"pull-request-title-pattern": "release(${component}): ${version}",
"component-no-space": true,
"pull-request-header": "> [!CAUTION]\n> Merging this PR will automatically publish to **PyPI** and create a **GitHub release**.\n\nFor the full release process, see [`.github/RELEASING.md`](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md).\n\n---\n\n_Everything below this line will be the GitHub release body._\n",
"pull-request-footer": "\n_Everything above this line will be the GitHub release body._\n\n---\n\n> [!NOTE]\n> A **New Contributors** section is appended to the GitHub release notes automatically at publish time (see [Release Pipeline](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md#release-pipeline), step 2).",
"packages": {
"libs/cli": {
"release-type": "python",
"package-name": "deepagents-cli",
"component": "deepagents-cli",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"deepagents_cli/_version.py"
],
"changelog-path": "CHANGELOG.md"
}
},
"tag-separator": "==",
"include-component-in-tag": true,
"include-v-in-tag": false
}