ci(release-please): exclude sub-packages and workflows from root release#331
Merged
kellervater merged 1 commit intomainfrom Apr 11, 2026
Merged
ci(release-please): exclude sub-packages and workflows from root release#331kellervater merged 1 commit intomainfrom
kellervater merged 1 commit intomainfrom
Conversation
Add exclude-paths to the root (.) package so commits scoped to sub-packages (cmd/scadm, .github/actions/*) and CI workflows (.github/workflows) don't trigger homeracker version bumps.
Contributor
There was a problem hiding this comment.
Pull request overview
Adjusts the root homeracker release-please configuration so that changes confined to sub-packages and CI/workflow directories don’t incorrectly trigger root version bumps.
Changes:
- Added
exclude-pathsto the root (.) package inrelease-please-config.jsonto ignore changes in sub-package and CI/workflow directories.
Merged
kellervater
pushed a commit
that referenced
this pull request
Apr 12, 2026
🤖 I have created a release *beep* *boop* --- <details><summary>homeracker: 3.1.0</summary> ## [3.1.0](homeracker-v3.0.0...homeracker-v3.1.0) (2026-04-12) ### ✨ Features * use shared pre-commit-hooks from kellerlabs/pre-commit-hooks ([#334](#334)) ([bb0e23a](bb0e23a)) ### 🐛 Bug Fixes * guard against empty PR list in automerge ([#335](#335)) ([a6343b5](a6343b5)) ### 🔄 CI/CD * **release-please:** exclude sub-packages and workflows from root release ([#331](#331)) ([d11275d](d11275d)) </details> <details><summary>sync-instructions: 1.1.0</summary> ## [1.1.0](sync-instructions-v1.0.0...sync-instructions-v1.1.0) (2026-04-12) ### ✨ Features * **sync-instructions:** discover instruction files dynamically ([#336](#336)) ([7321560](7321560)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: kellerlab-release-please[bot] <246533846+kellerlab-release-please[bot]@users.noreply.github.com>
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.
📦 What
Add
exclude-pathsto the root (.) package inrelease-please-config.json.💡 Why
The
feat(setup-openscad)!:commit triggered a major version bump on bothsetup-openscad(intended ✅) andhomeracker(unintended ❌ → v3.0.0). This happened because the root.package picks up all commits, including those scoped to sub-packages and CI workflows.🔧 How
Excluded paths from the root package:
cmd/scadm— has its own release-please package.github/actions/setup-openscad— has its own release-please package.github/actions/sync-instructions— has its own release-please package.github/workflows— CI-only, no release neededCommits touching only these paths will no longer bump the homeracker version.