Skip to content

Commit

Permalink
Migrate config renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 27, 2024
1 parent 43deaf7 commit e2e20c0
Showing 1 changed file with 71 additions and 27 deletions.
98 changes: 71 additions & 27 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,72 @@
{
"extends": ["config:recommended"],
"extends": [
"config:recommended"
],
"branchPrefix": "deps/",
"labels": ["PR: Dependencies"],
"labels": [
"PR: Dependencies"
],
"assignees": [],
"ignorePresets": [":prHourlyLimit2"],
"ignorePresets": [
":prHourlyLimit2"
],
"rangeStrategy": "update-lockfile",
"timezone": "Australia/Melbourne",
"configMigration": true,
"enabledManagers": ["composer", "dockerfile", "docker-compose", "github-actions", "custom.regex"],
"enabledManagers": [
"composer",
"dockerfile",
"docker-compose",
"github-actions",
"custom.regex"
],
"packageRules": [
{
"matchDepNames": ["php"],
"matchDepNames": [
"php"
],
"enabled": false
},
{
"groupName": "Major all - skipped to update manually",
"matchDatasources": ["packagist"],
"matchUpdateTypes": ["major"],
"matchPackagePatterns": [".*"],
"enabled": false
"matchDatasources": [
"packagist"
],
"matchUpdateTypes": [
"major"
],
"enabled": false,
"matchPackageNames": [
"/.*/"
]
},
{
"groupName": "Minor and Patch Contrib",
"groupSlug": "drupal-minor-patch-contrib",
"matchDatasources": ["packagist"],
"matchDatasources": [
"packagist"
],
"separateMinorPatch": false,
"matchPackagePatterns": [".*"],
"excludePackageNames": [
"drupal/core-composer-scaffold",
"drupal/core-project-message",
"drupal/core-recommended"
"matchPackageNames": [
"/.*/",
"!drupal/core-composer-scaffold",
"!drupal/core-project-message",
"!drupal/core-recommended"
]
},
{
"groupName": "Minor and Patch Core",
"groupSlug": "drupal-minor-patch-core",
"schedule": ["before 2am"],
"matchDatasources": ["packagist"],
"matchUpdateTypes": ["patch", "minor"],
"schedule": [
"before 2am"
],
"matchDatasources": [
"packagist"
],
"matchUpdateTypes": [
"patch",
"minor"
],
"matchDepNames": [
"drupal/core-composer-scaffold",
"drupal/core-project-message",
Expand All @@ -46,7 +75,10 @@
},
{
"groupName": "Container images excluded",
"matchManagers": ["dockerfile", "docker-compose"],
"matchManagers": [
"dockerfile",
"docker-compose"
],
"matchDepNames": [
"selenium/standalone-chrome",
"seleniarm/standalone-chromium"
Expand All @@ -56,24 +88,36 @@
{
"groupName": "Container images",
"groupSlug": "docker",
"schedule": ["before 3am"],
"matchManagers": ["dockerfile", "docker-compose", "custom.regex"],
"excludePackageNames": [
"selenium/standalone-chrome",
"seleniarm/standalone-chromium"
"schedule": [
"before 3am"
],
"matchManagers": [
"dockerfile",
"docker-compose",
"custom.regex"
],
"matchPackageNames": [
"!selenium/standalone-chrome",
"!seleniarm/standalone-chromium"
]
},
{
"groupName": "GitHub Actions",
"groupSlug": "github-actions",
"schedule": ["before 3am"],
"matchManagers": ["github-actions"]
"schedule": [
"before 3am"
],
"matchManagers": [
"github-actions"
]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^docker-compose\\.yml$"],
"fileMatch": [
"^docker-compose\\.yml$"
],
"matchStrings": [
"IMAGE:\\s*\"?\\${(?:.*):-(?<depName>.*?):(?<currentValue>.*?)(?:\\@sha256:.*)?}\"?"
],
Expand Down

1 comment on commit e2e20c0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.