googleapis / googleapis/release-please
Separate PR for root (`.`) package on a mono repos
- Dominant language
- TypeScript
- Stars
- 7.5k
- Forks
- 588
- Avg merge
- 12h 16m
- Merged PRs (30d)
- 7
Description
**Is your feature request related to a problem? Please describe.**
I managed a mono repo that contains root package and sub packages.
```
hello-world.go
modules/
foo/
bar/
```
The `foo` and `bar` packages require the `root` package.
Release please configuraton as follows:
```json
{
"packages": {
".": {
"separate-pull-requests": true,
"exclude-paths": [
"modules"
]
},
"foo": {},
"bar": {},
}
}
```
**Describe the solution you'd like**
I wish release please can open 2 seperated PRs for those releases, but there only one PR, I guess they share and reuse the same branch.
**Describe alternatives you've considered**
**Additional context**
Contributor guide
Assessment
This issue has not been assessed yet.