Skip to content

Commit

Permalink
Migrate from dependabot to renovate (#5940)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWittmann authored Jan 30, 2025
1 parent ad970e0 commit d74c75b
Show file tree
Hide file tree
Showing 2 changed files with 156 additions and 144 deletions.
144 changes: 0 additions & 144 deletions .github/dependabot.yml

This file was deleted.

156 changes: 156 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": [
"npm", "maven", "nuget", "go"
],
"dependencyDashboard": true,
"rangeStrategy": "bump",
"ignorePaths": [
"ui/deploy-examples/**",
"ui/Dockerfile",
"distro/**",
"docs/**",
"docs-playbook/**",
"examples/**"
],
"prConcurrentLimit": 5,
"prHourlyLimit": 5,
"packageRules": [
{
"groupName": "Dependencies: Maven App: All",
"matchPaths": [
"/**/pom.xml"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "Dependencies: Maven App: All (Major)",
"matchPaths": [
"/**/pom.xml"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 1 * *" ]
},
{
"groupName": "Dependencies: Maven App: Quarkus",
"matchPaths": [
"/**/pom.xml"
],
"matchPackageNames": ["io.quarkus:*"],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"],
"schedule": [ "* 0 1 * *" ]
},
{
"groupName": "Dependencies: Maven App: Quarkus (Major)",
"matchPaths": [
"/**/pom.xml"
],
"matchPackageNames": ["io.quarkus:*"],
"enabled": false,
"matchUpdateTypes": ["major"]
},
{
"groupName": "Dependencies: Maven App: Confluent",
"matchPaths": [
"/**/pom.xml"
],
"matchPackageNames": ["io.confluent:*"],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"],
"schedule": [ "* 0 1 * *" ]
},
{
"groupName": "Dependencies: Maven App: Confluent (Major)",
"matchPaths": [
"/**/pom.xml"
],
"matchPackageNames": ["io.confluent:*"],
"enabled": false,
"matchUpdateTypes": ["major"]
},
{
"groupName": "Dependencies: UI App",
"matchPaths": [
"ui/ui-app/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "Dependencies: UI App (Major)",
"matchPaths": [
"ui/ui-app/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
},
{
"groupName": "Dependencies: Typescript SDK",
"matchPaths": [
"typescript-sdk/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "Dependencies: Typescript SDK (Major)",
"matchPaths": [
"typescript-sdk/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
},
{
"groupName": "Dependencies: Kiota (Typescript)",
"matchPaths": [
"typescript-sdk/**",
"ui/ui-app/**"
],
"matchPackageNames": ["@microsoft/kiota-*"],
"enabled": true,
"schedule": [ "* 0 15 * *" ]
},
{
"groupName": "Dependencies: UI Tests",
"matchPaths": [
"ui/tests/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "Dependencies: UI Tests (Major)",
"matchPaths": [
"ui/tests/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
},
{
"groupName": "Dependencies: UI Docs",
"matchPaths": [
"ui/ui-docs/**"
],
"enabled": true,
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "Dependencies: UI Docs (Major)",
"matchPaths": [
"ui/ui-docs/**"
],
"enabled": true,
"matchUpdateTypes": ["major"],
"schedule": [ "* 0 15 * *" ]
}
]
}

0 comments on commit d74c75b

Please sign in to comment.