|
27 | 27 | "customManagers": [ |
28 | 28 | { |
29 | 29 | "customType": "regex", |
30 | | - "description": "Bump OpenCHAMI service image tags in images/*.env", |
| 30 | + "description": "Bump explicitly-annotated image tags in images/*.env (both OpenCHAMI services and third-party images). packageRules below scope behaviour per registry.", |
31 | 31 | "fileMatch": [ |
32 | 32 | "^images/.+\\.env$" |
33 | 33 | ], |
34 | 34 | "matchStrings": [ |
35 | | - "# renovate:\\s*datasource=docker(?:\\s+versioning=(?<versioning>[a-z]+))?\\s*\\nSBX_[A-Z_]+_IMAGE=(?<depName>ghcr\\.io/openchami/[^:\\s]+):(?<currentValue>[^\\s]+)" |
36 | | - ], |
37 | | - "datasourceTemplate": "docker", |
38 | | - "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}loose{{/if}}" |
39 | | - }, |
40 | | - { |
41 | | - "customType": "regex", |
42 | | - "description": "Bump any other explicitly-annotated image tags in images/*.env", |
43 | | - "fileMatch": [ |
44 | | - "^images/.+\\.env$" |
45 | | - ], |
46 | | - "matchStrings": [ |
47 | | - "# renovate:\\s*datasource=docker(?:\\s+versioning=(?<versioning>[a-z]+))?\\s*\\nSBX_[A-Z_]+_IMAGE=(?<depName>(?!ghcr\\.io/openchami/)[^:\\s]+):(?<currentValue>[^\\s]+)" |
| 35 | + "# renovate:\\s*datasource=docker(?:\\s+versioning=(?<versioning>[a-z]+))?\\s*\\nSBX_[A-Z_]+_IMAGE=(?<depName>[^:\\s]+):(?<currentValue>[^\\s]+)" |
48 | 36 | ], |
49 | 37 | "datasourceTemplate": "docker", |
50 | 38 | "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}loose{{/if}}" |
|
54 | 42 | "packageRules": [ |
55 | 43 | { |
56 | 44 | "description": "Group all OpenCHAMI service bumps into one PR per release wave so the sandbox tests them together — the way they actually deploy.", |
57 | | - "matchPackagePrefixes": ["ghcr.io/openchami/"], |
| 45 | + "matchPackageNames": ["ghcr.io/openchami/**"], |
58 | 46 | "groupName": "openchami services", |
59 | 47 | "schedule": ["after 9pm every weekday", "before 6am every weekday", "every weekend"] |
60 | 48 | }, |
61 | 49 | { |
62 | 50 | "description": "Don't chase pre-release tags (pr-*, rc.*, alpha, beta). Renovate's default would otherwise open noisy PRs for every PR build pushed to ghcr.", |
63 | | - "matchPackagePatterns": ["^ghcr\\.io/openchami/"], |
64 | | - "ignoreUnstable": true, |
65 | | - "matchUpdateTypes": ["major", "minor", "patch"] |
| 51 | + "matchPackageNames": ["ghcr.io/openchami/**"], |
| 52 | + "ignoreUnstable": true |
66 | 53 | }, |
67 | 54 | { |
68 | 55 | "description": "Auto-merge sandbox-fixture and tooling-only PRs that pass CI. Service bumps stay manual — they're the whole point of the sandbox: a human should look at the PR diff.", |
|
0 commit comments