Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency ownership refinements #205937

Merged
merged 8 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,6 @@
"@types/react-window-infinite-loader": "^1.0.9",
"@types/redux-actions": "^2.6.1",
"@types/resolve": "^1.20.1",
"@types/scheduler": "^0.23.0",
"@types/seedrandom": ">=2.0.0 <4.0.0",
"@types/selenium-webdriver": "^4.1.27",
"@types/semver": "^7.5.8",
Expand Down
7 changes: 5 additions & 2 deletions packages/kbn-dependency-ownership/src/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ export function packageFilter(pkg: string) {
return (
// @kbn-* packages are internal to this repo, and do not require ownership via renovate
!pkg.startsWith('@kbn/') &&
// The EUI team owns the EUI package, and it is not covered by renovate
pkg !== '@elastic/eui'
// The EUI team owns the EUI packages, and are not covered by renovate
pkg !== '@elastic/eui' &&
pkg !== '@elastic/eui-theme-borealis' &&
// Operations owns node, and is not covered by renovate
pkg !== '@types/node'
);
}

Expand Down
Loading
Loading