fix(ci): drop package-name to fix release-please auto-tagging#190
Merged
Conversation
…ging
release-please v4 derives an expected component ("gateway") from
`package-name: "@lobu/gateway"`. When the Merge plugin creates
a release PR, the title carries no component — so createReleases
sees `PR component: undefined != configured component: gateway`
and aborts without tagging. This has silently broken every release
since v3.3.0, requiring manual gh release create + label swap +
workflow_dispatch each time.
Removing `package-name` eliminates the expected component entirely.
The field was only cosmetic here (npm publish uses each package's
own package.json name, not this config key).
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This was referenced Apr 16, 2026
Merged
Closed
Closed
Closed
3 tasks
buremba
added a commit
that referenced
this pull request
May 19, 2026
Brings in the merged owletto changes since the last bump: - #189 narrow-shell navigation (replaces mobile drawer): container- query-driven shell on <640px, pill row reused from desktop sidebar, agent accordion + per-agent Chat sub-tab, CommandPalette dual presentation (centered dialog wide / full-screen narrow with input- at-bottom focus-trap), Sheet primitive deleted across the codebase. - #190 passkey sign-in + local-mode routing. - Image refreshes. Pointer: 0275737 → d5ae2a4.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
package-name: "@lobu/gateway"fromrelease-please-config.jsonRoot cause
release-please v4 derives expected component
gatewayfrompackage-name. The Merge plugin creates titles likechore: release main(no component). createReleases then fails:No tag, no GitHub release, no publish workflow. Every release needed manual
gh release create+ label swap +workflow_dispatch.package-namewas cosmetic — npm publish uses eachpackages/*/package.jsonname, not this config key.Test plan