-
Notifications
You must be signed in to change notification settings - Fork 1.1k
chore: Simply renovate bot config to only propose testing and ci dep updates #12662
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,27 +4,47 @@ | |
| ], | ||
| "packageRules": [ | ||
| { | ||
| "matchUpdateTypes": [ | ||
| "major" | ||
| ], | ||
| "enabled": false, | ||
| "matchPackageNames": [ | ||
| "matchPackagePatterns": [ | ||
| "*" | ||
| ] | ||
| ], | ||
| "enabled": false | ||
| }, | ||
| { | ||
| "matchPackagePatterns": [ | ||
| "^com.google.cloud:", | ||
| "^com.google.api:", | ||
| "^com.google.http-client:", | ||
| "^com.google.api-client:" | ||
| ], | ||
| "enabled": true, | ||
| "semanticCommitType": "deps" | ||
| }, | ||
|
Comment on lines
+13
to
21
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This configuration block enables updates for production dependencies (e.g., |
||
| { | ||
| "semanticCommitType": "fix", | ||
| "semanticCommitScope": null, | ||
| "matchPackageNames": [ | ||
| "/^com.google.cloud:sdk-platform-java-config/" | ||
| ] | ||
| "matchPackagePatterns": [ | ||
| "^junit:junit", | ||
| "^org.junit.vintage:junit-vintage-engine", | ||
| "^org.junit.jupiter:junit-jupiter-api", | ||
| "^org.junit.jupiter:junit-jupiter-engine", | ||
| "^org.junit.jupiter:junit-jupiter-params", | ||
| "^com.google.truth:truth", | ||
| "^org.mockito:mockito-core", | ||
| "^org.mockito:mockito-inline", | ||
| "^org.objenesis:objenesis", | ||
| "^com.google.cloud:google-cloud-conformance-tests", | ||
| "^org.graalvm.buildtools:junit-platform-native" | ||
| ], | ||
| "groupName": "test dependencies", | ||
| "enabled": true, | ||
| "semanticCommitType": "test" | ||
| }, | ||
| { | ||
| "groupName": "First-party storage dependencies", | ||
| "matchPackageNames": [ | ||
| "/^com.google.cloud:google-cloud-storage/", | ||
| "/^com.google.apis:google-api-services-storage/" | ||
| ] | ||
| "matchPackagePatterns": [ | ||
| "^org.apache.maven.plugins", | ||
| "^org.jacoco:jacoco-maven-plugin", | ||
| "^org.codehaus.mojo:" | ||
| ], | ||
| "enabled": true, | ||
| "semanticCommitType": "build" | ||
| }, | ||
| { | ||
| "matchManagers": [ | ||
|
|
@@ -119,5 +139,9 @@ | |
| "matchStrings": ["(?<depName>.*),(.*)=(?<currentValue>.*)"], | ||
| "datasourceTemplate": "maven" | ||
| } | ||
| ] | ||
| ], | ||
| "semanticCommits": true, | ||
| "dependencyDashboard": true, | ||
| "prConcurrentLimit": 0, | ||
| "prHourlyLimit": 0 | ||
|
Comment on lines
+145
to
+146
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Setting |
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
matchPackagePatternsfield expects a valid regular expression. The string"*"is not a valid regex as it lacks a preceding atom for the quantifier. To match all packages, usematchPackageNameswith the glob"*"ormatchPackagePatternswith the regex".*".