Skip to content

Commit

Permalink
deps: migrate config .github/renovate.json5 (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored Nov 14, 2024
1 parent fbac8aa commit 62b5096
Showing 1 changed file with 44 additions and 33 deletions.
77 changes: 44 additions & 33 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,43 +1,54 @@
{
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":separateMajorReleases",
":combinePatchMinorReleases",
":ignoreUnstable",
":prImmediately",
":updateNotScheduled",
":automergeDisabled",
":ignoreModulesAndTests",
":maintainLockFilesDisabled"
extends: [
'config:recommended',
'helpers:pinGitHubActionDigests',
':separateMajorReleases',
':combinePatchMinorReleases',
':ignoreUnstable',
':prImmediately',
':updateNotScheduled',
':automergeDisabled',
':ignoreModulesAndTests',
':maintainLockFilesDisabled',
],
"commitMessagePrefix": "deps: ",
"semanticCommits": "enabled",
"dependencyDashboard": true,
"dependencyDashboardLabels": ["type: process"],
"ignorePaths": [".kokoro/requirements.txt"],
"ignoreDeps": [
"org.graalvm.sdk:graal-sdk",
"ch.qos.logback:logback-classic"
commitMessagePrefix: 'deps: ',
semanticCommits: 'enabled',
dependencyDashboard: true,
dependencyDashboardLabels: [
'type: process',
],
"packageRules": [
ignorePaths: [
'.kokoro/requirements.txt',
],
ignoreDeps: [
'org.graalvm.sdk:graal-sdk',
'ch.qos.logback:logback-classic',
],
packageRules: [
{
"groupName": "Non-major dependencies",
"matchManagers": ["maven"],
"matchUpdateTypes": ["minor", "patch"],
groupName: 'Non-major dependencies',
matchManagers: [
'maven',
],
matchUpdateTypes: [
'minor',
'patch',
],
},
{
"groupName": "dependencies for github",
"matchManagers": ["github-actions"],
"commitMessagePrefix": "chore(deps):"
groupName: 'dependencies for github',
matchManagers: [
'github-actions',
],
commitMessagePrefix: 'chore(deps):',
},
{
"groupName": "JUnit dependencies",
"matchPackagePatterns": [
"^org.junit.platform:junit-platform-engine",
"^org.junit.platform:junit-platform-commons",
"^org.junit.vintage:junit-vintage-engine",
]
groupName: 'JUnit dependencies',
matchPackageNames: [
'/^org.junit.platform:junit-platform-engine/',
'/^org.junit.platform:junit-platform-commons/',
'/^org.junit.vintage:junit-vintage-engine/',
],
},
]
],
}

0 comments on commit 62b5096

Please sign in to comment.