Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"release-type": "python",
"packages": {
".": {
"package-name": "",
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

package-name is set to an empty string. In release-please this field is used as the component/package identifier; leaving it blank can produce invalid or confusing release PR titles/tags, and may fail schema validation. Either remove package-name entirely (to use defaults) or set it to the actual distribution name (e.g., openfga-sdk as declared in pyproject.toml).

Suggested change
"package-name": "",

Copilot uses AI. Check for mistakes.
"include-component-in-tag": false,
"changelog-path": "CHANGELOG.md",
"changelog-type": "default",
Expand All @@ -17,7 +18,8 @@
{ "type": "docs", "section": "Documentation", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "ci", "section": "CI", "hidden": true },
{ "type": "chore", "section": "Miscellaneous", "hidden": true }
{ "type": "chore", "section": "Miscellaneous", "hidden": true },
{ "type": "release", "section": "Miscellaneous", "hidden": true }
],
"extra-files": [
{ "type": "toml", "path": "pyproject.toml", "jsonpath": "$.project.version" },
Expand Down
Loading