Skip to content

Commit

Permalink
chore: Use renovate's suggested config (#1962)
Browse files Browse the repository at this point in the history
Dependency Dashboard is not updating PRs. Using renovate's suggested migration config to see if that will fix it.
  • Loading branch information
lqiu96 authored Jul 23, 2024
1 parent 792e44f commit 930c63b
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,40 @@
":updateNotScheduled",
":automergeDisabled",
":ignoreModulesAndTests",
":maintainLockFilesDisabled",
":autodetectPinVersions"
":maintainLockFilesDisabled"
],
"ignorePaths": [
".kokoro/requirements.txt"
],
"ignorePaths": [".kokoro/requirements.txt"],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^.kokoro/presubmit/graalvm-native.*.cfg$"
],
"matchStrings": ["value: \"gcr.io/cloud-devrel-public-resources/graalvm.*:(?<currentValue>.*?)\""],
"matchStrings": [
"value: \"gcr.io/cloud-devrel-public-resources/graalvm.*:(?<currentValue>.*?)\""
],
"depNameTemplate": "com.google.cloud:native-image-shared-config",
"datasourceTemplate": "maven"
}
],
"packageRules": [
{
"packagePatterns": [
"matchPackagePatterns": [
"^com.google.guava:"
],
"versionScheme": "docker"
"versioning": "docker"
},
{
"packagePatterns": [
"matchPackagePatterns": [
"*"
],
"semanticCommitType": "deps",
"semanticCommitScope": null
},
{
"packagePatterns": [
"matchPackagePatterns": [
"^org.apache.maven",
"^org.jacoco:",
"^org.codehaus.mojo:",
Expand All @@ -49,7 +52,7 @@
"semanticCommitScope": "deps"
},
{
"packagePatterns": [
"matchPackagePatterns": [
"^com.google.http-client:google-http-client",
"^com.google.cloud:libraries-bom",
"^com.google.cloud.samples:shared-configuration"
Expand All @@ -58,7 +61,7 @@
"semanticCommitScope": "deps"
},
{
"packagePatterns": [
"matchPackagePatterns": [
"^junit:junit",
"^com.google.truth:truth",
"^org.mockito:mockito-core",
Expand All @@ -69,18 +72,18 @@
"semanticCommitScope": "deps"
},
{
"packagePatterns": [
"matchPackagePatterns": [
"^com.google.cloud:google-cloud-"
],
"ignoreUnstable": false
},
{
"packagePatterns": [
"matchPackagePatterns": [
"^com.fasterxml.jackson.core"
],
"groupName": "jackson dependencies"
}
],
"semanticCommits": true,
"semanticCommits": "enabled",
"dependencyDashboard": true
}
}

0 comments on commit 930c63b

Please sign in to comment.