|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:recommended", |
| 5 | + "docker:enableMajor", |
| 6 | + ":disableRateLimiting", |
| 7 | + ":dependencyDashboard", |
| 8 | + ":semanticCommits", |
| 9 | + ":automergeBranch" |
| 10 | + ], |
| 11 | + "dependencyDashboard": true, |
| 12 | + "dependencyDashboardTitle": "Renovate Dashboard 🤖", |
| 13 | + "suppressNotifications": ["prEditedNotification", "prIgnoreNotification"], |
| 14 | + "rebaseWhen": "conflicted", |
| 15 | + "schedule": ["every weekend"], |
| 16 | + "ignorePaths": ["**/*.sops.*"], |
| 17 | + "flux": { |
| 18 | + "fileMatch": ["(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"] |
| 19 | + }, |
| 20 | + "helm-values": { |
| 21 | + "fileMatch": ["(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"] |
| 22 | + }, |
| 23 | + "helmfile": { |
| 24 | + "fileMatch": ["(^|/)helmfile\\.ya?ml(?:\\.j2)?$"] |
| 25 | + }, |
| 26 | + "kubernetes": { |
| 27 | + "fileMatch": ["(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$"] |
| 28 | + }, |
| 29 | + "kustomize": { |
| 30 | + "fileMatch": ["(^|/)kustomization\\.ya?ml(?:\\.j2)?$"] |
| 31 | + }, |
| 32 | + "pip_requirements": { |
| 33 | + "fileMatch": ["(^|/)[\\w-]*requirements(-\\w+)?\\.(txt|pip)(?:\\.j2)?$"] |
| 34 | + }, |
| 35 | + "commitMessageTopic": "{{depName}}", |
| 36 | + "commitMessageExtra": "to {{newVersion}}", |
| 37 | + "commitMessageSuffix": "", |
| 38 | + "packageRules": [ |
| 39 | + { |
| 40 | + "description": ["Auto merge Github Actions"], |
| 41 | + "matchManagers": ["github-actions"], |
| 42 | + "automerge": true, |
| 43 | + "automergeType": "branch", |
| 44 | + "ignoreTests": true, |
| 45 | + "matchUpdateTypes": ["minor", "patch"] |
| 46 | + }, |
| 47 | + { |
| 48 | + "matchUpdateTypes": ["minor", "patch"], |
| 49 | + "matchCurrentVersion": "!/^0/", |
| 50 | + "automerge": true |
| 51 | + }, |
| 52 | + { |
| 53 | + "matchUpdateTypes": ["digest"], |
| 54 | + "automerge": true |
| 55 | + }, |
| 56 | + { |
| 57 | + "description": ["Flux Group"], |
| 58 | + "groupName": "Flux", |
| 59 | + "matchPackagePatterns": ["fluxcd"], |
| 60 | + "matchDatasources": ["docker", "github-tags"], |
| 61 | + "versioning": "semver", |
| 62 | + "group": { |
| 63 | + "commitMessageTopic": "{{{groupName}}} group" |
| 64 | + }, |
| 65 | + "separateMinorPatch": true |
| 66 | + }, |
| 67 | + { |
| 68 | + "description": ["Talos Group"], |
| 69 | + "groupName": "Talos", |
| 70 | + "matchPackagePatterns": [ |
| 71 | + "siderolabs/talosctl", |
| 72 | + "siderolabs/installer" |
| 73 | + ], |
| 74 | + "matchDatasources": ["docker"], |
| 75 | + "group": { |
| 76 | + "commitMessageTopic": "{{{groupName}}} group" |
| 77 | + }, |
| 78 | + "separateMinorPatch": true |
| 79 | + }, |
| 80 | + { |
| 81 | + "matchDatasources": ["helm"], |
| 82 | + "commitMessageTopic": "chart {{depName}}" |
| 83 | + }, |
| 84 | + { |
| 85 | + "matchDatasources": ["docker"], |
| 86 | + "commitMessageTopic": "image {{depName}}" |
| 87 | + }, |
| 88 | + { |
| 89 | + "matchDatasources": ["docker"], |
| 90 | + "matchUpdateTypes": ["major"], |
| 91 | + "commitMessagePrefix": "feat(container)!: " |
| 92 | + }, |
| 93 | + { |
| 94 | + "matchDatasources": ["docker"], |
| 95 | + "matchUpdateTypes": ["minor"], |
| 96 | + "semanticCommitType": "feat", |
| 97 | + "semanticCommitScope": "container" |
| 98 | + }, |
| 99 | + { |
| 100 | + "matchDatasources": ["docker"], |
| 101 | + "matchUpdateTypes": ["patch"], |
| 102 | + "semanticCommitType": "fix", |
| 103 | + "semanticCommitScope": "container" |
| 104 | + }, |
| 105 | + { |
| 106 | + "matchDatasources": ["docker"], |
| 107 | + "matchUpdateTypes": ["digest"], |
| 108 | + "semanticCommitType": "chore", |
| 109 | + "semanticCommitScope": "container" |
| 110 | + } |
| 111 | + ] |
| 112 | +} |
0 commit comments