Skip to content

Commit cb1a6a4

Browse files
locus313Copilot
andauthored
fix: add packages section to release-please config (#39)
In manifest mode (config-file + manifest-file), release-please requires an explicit packages section to know which paths to release. Without it, Set(0) commits are found and no release PR is created. Moving release-type and version-file under packages['.'] fixes this. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8ab12ac commit cb1a6a4

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

release-please-config.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3-
"release-type": "simple",
4-
"version-file": "VERSION",
3+
"packages": {
4+
".": {
5+
"release-type": "simple",
6+
"version-file": "VERSION"
7+
}
8+
},
59
"include-v-in-tag": true,
610
"changelog-sections": [
711
{"type": "feat", "section": "Features"},

0 commit comments

Comments
 (0)