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

Configure Renovate #20902

Merged
merged 10 commits into from
May 31, 2024
6 changes: 3 additions & 3 deletions WordPress/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -364,15 +364,15 @@ dependencies {
implementation (project(path:':libs:editor')) {
exclude group: 'org.wordpress', module: 'utils'
}
implementation("$gradle.ext.fluxCBinaryPath") {
implementation("$gradle.ext.fluxCBinaryPath:$wordPressFluxCVersion") {
version {
strictly wordPressFluxCVersion
}
exclude group: "com.android.volley"
exclude group: 'org.wordpress', module: 'utils'
exclude group: 'com.android.support', module: 'support-annotations'
}
implementation ("$gradle.ext.wputilsBinaryPath") {
implementation ("$gradle.ext.wputilsBinaryPath:$wordPressUtilsVersion") {
version {
strictly wordPressUtilsVersion
}
Expand All @@ -383,7 +383,7 @@ dependencies {
}
implementation "$gradle.ext.aboutAutomatticBinaryPath:$automatticAboutVersion"

implementation("$gradle.ext.tracksBinaryPath") {
implementation("$gradle.ext.tracksBinaryPath:$automatticTracksVersion") {
version {
strictly automatticTracksVersion
}
Expand Down
32 changes: 32 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"enabled": false,
"packagePatterns": [
"*"
]
},
wzieba marked this conversation as resolved.
Show resolved Hide resolved
{
"enabled": true,
"matchDepPatterns": [
"automattic|wpmreleasetoolkit|dangermattic"
],
"separateMajorMinor": false
},
{
"enabled": true,
"enabledManagers": [
"gradle"
],
"matchDepPatterns": [
"automattic|wordpress|gravatar"
],
"separateMajorMinor": false,
"versioning": "semver-coerced"
}
]
}
Loading