|
| 1 | +{ |
| 2 | + packageRules: [ |
| 3 | + { |
| 4 | + description: "Update Builder Image", |
| 5 | + groupName: "Builder Image", |
| 6 | + groupSlug: "cso-builder-image", |
| 7 | + commitMessageTopic: "Builder Image group", |
| 8 | + matchPaths: ["images/builder/**"], |
| 9 | + separateMajorMinor: false, |
| 10 | + separateMultipleMajor: false, |
| 11 | + separateMinorPatch: false, |
| 12 | + schedule: ["on the first day of the month"], |
| 13 | + }, |
| 14 | + { |
| 15 | + description: "Update Cso Image", |
| 16 | + groupName: "Cso Image", |
| 17 | + matchManagers: ["dockerfile", "regex"], |
| 18 | + separateMajorMinor: false, |
| 19 | + separateMultipleMajor: false, |
| 20 | + separateMinorPatch: false, |
| 21 | + matchPaths: ["images/cso/**"], |
| 22 | + commitMessageTopic: "Cso Image group", |
| 23 | + groupSlug: "cso-manager-image", |
| 24 | + schedule: ["on monday"], |
| 25 | + }, |
| 26 | + { |
| 27 | + description: "Update Makefile", |
| 28 | + groupName: "Makefile", |
| 29 | + matchManagers: ["regex"], |
| 30 | + separateMajorMinor: false, |
| 31 | + separateMultipleMajor: false, |
| 32 | + separateMinorPatch: false, |
| 33 | + matchFiles: ["Makefile"], |
| 34 | + commitMessageTopic: "Makefile group", |
| 35 | + groupSlug: "makefile", |
| 36 | + }, |
| 37 | + { |
| 38 | + description: "Update Github Actions", |
| 39 | + groupName: "github-actions", |
| 40 | + matchManagers: ["github-actions"], |
| 41 | + matchUpdateTypes: ["major", "minor", "patch", "digest", "pin", "pinDigest"], |
| 42 | + pinDigests: true, |
| 43 | + commitMessageTopic: "Github Actions group", |
| 44 | + groupSlug: "github-actions", |
| 45 | + schedule: ["on monday"], |
| 46 | + }, |
| 47 | + { |
| 48 | + description: "Update Bot Schedule", |
| 49 | + matchManagers: ["github-actions"], |
| 50 | + matchUpdateTypes: ["major", "minor", "patch"], |
| 51 | + matchPackageNames: ["renovatebot/github-action"], |
| 52 | + schedule: ["on the first day of the month"], |
| 53 | + }, |
| 54 | + { |
| 55 | + description: "Update Go Dev Dependencies", |
| 56 | + groupName: "Update Go Dev Dependencies", |
| 57 | + matchManagers: ["gomod"], |
| 58 | + matchPaths: ["hack/tools/**"], |
| 59 | + commitMessageTopic: "Go Dev Dependencies group", |
| 60 | + groupSlug: "golang-devs-deps", |
| 61 | + }, |
| 62 | + { |
| 63 | + description: "Update Golang Dependencies", |
| 64 | + groupName: "Update Golang Dependencies", |
| 65 | + matchManagers: ["gomod"], |
| 66 | + ignorePaths: ["hack/tools/**"], |
| 67 | + commitMessageTopic: "Golang Dependencies group", |
| 68 | + groupSlug: "golang-deps", |
| 69 | + }, |
| 70 | + { |
| 71 | + description: "disable update of cso builder image", |
| 72 | + matchManagers: ["github-actions"], |
| 73 | + matchUpdateTypes: ["major", "minor", "patch"], |
| 74 | + matchPackageNames: ["ghcr.io/sovereigncloudstack/cso-builder"], |
| 75 | + enabled: false, |
| 76 | + }, |
| 77 | + ] |
| 78 | +} |
0 commit comments