|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:recommended", |
| 5 | + "helpers:pinGitHubActionDigests", |
| 6 | + ":semanticCommits" |
| 7 | + ], |
| 8 | + "rebaseWhen": "conflicted", |
| 9 | + "prConcurrentLimit": 5, |
| 10 | + "baseBranches": ["main"], |
| 11 | + "labels": ["automated"], |
| 12 | + "customManagers": [ |
| 13 | + { |
| 14 | + "customType": "regex", |
| 15 | + "description": "Bump up version in the Makefile", |
| 16 | + "fileMatch": ["^Makefile$"], |
| 17 | + "matchStrings": [ |
| 18 | + "UP_VERSION = (?<currentValue>.*?)\\n" |
| 19 | + ], |
| 20 | + "datasourceTemplate": "github-releases", |
| 21 | + "depNameTemplate": "upbound/up", |
| 22 | + }, { |
| 23 | + "customType": "regex", |
| 24 | + "description": "Bump uptest version in the Makefile", |
| 25 | + "fileMatch": ["^Makefile$"], |
| 26 | + "matchStrings": [ |
| 27 | + "UPTEST_VERSION = (?<currentValue>.*?)\\n" |
| 28 | + ], |
| 29 | + "datasourceTemplate": "github-releases", |
| 30 | + "depNameTemplate": "upbound/uptest", |
| 31 | + }, { |
| 32 | + "customType": "regex", |
| 33 | + "description": "Bump providers/functions/configurations in crossplane.yaml", |
| 34 | + "fileMatch": ["crossplane.yaml"], |
| 35 | + "matchStrings": [ |
| 36 | + "#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s*\\n\\s*version:\\s*\"(?<currentValue>[^\"]+)\"" |
| 37 | + ], |
| 38 | + "datasourceTemplate": "{{{datasource}}}", |
| 39 | + "depNameTemplate": "{{{depName}}}", |
| 40 | + } |
| 41 | + ], |
| 42 | +} |
0 commit comments