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

fix(presets): switch kiota monorepo to group #32437

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
41 changes: 41 additions & 0 deletions lib/config/presets/internal/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,46 @@ const staticGroups = {
},
],
},
kiota: {
description: 'Group Kiota packages together.',
packageRules: [
{
description: 'Groups Kiota Node.JS packages together.',
groupName: 'Kiota',
groupSlug: 'kiota-node',
matchDatasources: ['npm'],
matchPackageNames: ['@microsoft/kiota**'],
},
{
description: 'Groups Kiota .NET packages together.',
groupName: 'Kiota',
groupSlug: 'kiota-dotnet',
matchDatasources: ['nuget'],
matchPackageNames: ['Microsoft.Kiota**', 'Microsoft.OpenApi.Kiota**'],
},
{
description: 'Groups Kiota Java packages together.',
groupName: 'Kiota',
groupSlug: 'kiota-java',
matchDatasources: ['maven'],
matchPackageNames: ['com.microsoft.kiota**'],
},
{
description: 'Groups Kiota Python packages together.',
groupName: 'Kiota',
groupSlug: 'kiota-python',
matchDatasources: ['pypi'],
matchPackageNames: ['microsoft-kiota**'],
},
{
description: 'Groups Kiota Go packages together.',
groupName: 'Kiota',
groupSlug: 'kiota-go',
matchDatasources: ['go'],
matchPackageNames: ['github.com/microsoft/kiota**'],
},
],
},
kubernetes: {
description: 'Group Kubernetes packages together.',
packageRules: [
Expand Down Expand Up @@ -461,6 +501,7 @@ const staticGroups = {
'group:jestPlusTSJest',
'group:jestPlusTypes',
'group:jwtFramework',
'group:kiota',
'group:kubernetes',
'group:phpstan',
'group:polymer',
Expand Down
1 change: 0 additions & 1 deletion lib/data/monorepo.json
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@
"jsplumb": "https://github.com/jsplumb/jsplumb",
"junit5": "https://github.com/junit-team/junit5",
"kernelmemory": "https://github.com/microsoft/kernel-memory",
"kiota": "https://github.com/microsoft/kiota",
"kotlin": "https://github.com/JetBrains/kotlin",
"kotlinx-coroutines": "https://github.com/Kotlin/kotlinx.coroutines",
"kroki": "https://github.com/yuzutech/kroki",
Expand Down