|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:base" |
| 5 | + ], |
| 6 | + "schedule": [ |
| 7 | + "before 6am on friday" |
| 8 | + ], |
| 9 | + "timezone": "Europe/Paris", |
| 10 | + "prConcurrentLimit": 20, |
| 11 | + "prCreation": "immediate", |
| 12 | + "rebaseWhen": "behind-base-branch", |
| 13 | + "semanticCommits": "enabled", |
| 14 | + "packageRules": [ |
| 15 | + { |
| 16 | + "description": "Group all Terraform provider updates", |
| 17 | + "matchManagers": ["terraform"], |
| 18 | + "matchDatasources": ["terraform-provider"], |
| 19 | + "groupName": "terraform-providers", |
| 20 | + "automerge": false |
| 21 | + }, |
| 22 | + { |
| 23 | + "description": "Group all Terraform module updates", |
| 24 | + "matchManagers": ["terraform"], |
| 25 | + "matchDatasources": ["terraform-module"], |
| 26 | + "groupName": "terraform-modules", |
| 27 | + "automerge": false |
| 28 | + }, |
| 29 | + { |
| 30 | + "description": "Pin GitHub Actions to commit SHA", |
| 31 | + "matchManagers": ["github-actions"], |
| 32 | + "pinDigests": true |
| 33 | + }, |
| 34 | + { |
| 35 | + "description": "Group all GitHub Actions updates", |
| 36 | + "matchManagers": ["github-actions"], |
| 37 | + "groupName": "github-actions", |
| 38 | + "automerge": false |
| 39 | + }, |
| 40 | + { |
| 41 | + "description": "Group Docker base image updates", |
| 42 | + "matchManagers": ["dockerfile"], |
| 43 | + "groupName": "docker-base-images", |
| 44 | + "automerge": false |
| 45 | + }, |
| 46 | + { |
| 47 | + "description": "Group devcontainer updates", |
| 48 | + "matchManagers": ["devcontainer"], |
| 49 | + "groupName": "devcontainer", |
| 50 | + "automerge": false |
| 51 | + } |
| 52 | + ] |
| 53 | +} |
0 commit comments