-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 synced local '.github/renovate.json5' with remote 'shared/configura…
…tions/renovate.json5'
- Loading branch information
upbound-bot
committed
Nov 28, 2024
1 parent
9c11aea
commit cd8752b
Showing
1 changed file
with
72 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,77 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended", | ||
"helpers:pinGitHubActionDigests", | ||
":semanticCommits" | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: [ | ||
'config:recommended', | ||
'helpers:pinGitHubActionDigests', | ||
':semanticCommits', | ||
], | ||
"rebaseWhen": "conflicted", | ||
"prConcurrentLimit": 5, | ||
"baseBranches": ["main"], | ||
"labels": ["automated"], | ||
"customManagers": [ | ||
rebaseWhen: 'conflicted', | ||
prConcurrentLimit: 5, | ||
baseBranches: [ | ||
'main', | ||
], | ||
labels: [ | ||
'automated', | ||
], | ||
packageRules: [ | ||
{ | ||
matchFileNames: [ | ||
'.github/**', | ||
], | ||
groupName: 'github-actions dependencies', | ||
}, | ||
{ | ||
matchFileNames: [ | ||
'crossplane.yaml', | ||
], | ||
groupName: 'crossplane dependencies', | ||
}, | ||
{ | ||
matchFileNames: [ | ||
'Makefile', | ||
], | ||
groupName: 'Makefile dependencies', | ||
}, | ||
], | ||
customManagers: [ | ||
{ | ||
"customType": "regex", | ||
"description": "Bump up version in the Makefile", | ||
"fileMatch": ["^Makefile$"], | ||
"matchStrings": [ | ||
"UP_VERSION = (?<currentValue>.*?)\\n" | ||
], | ||
"datasourceTemplate": "github-releases", | ||
"depNameTemplate": "upbound/up", | ||
}, { | ||
"customType": "regex", | ||
"description": "Bump uptest version in the Makefile", | ||
"fileMatch": ["^Makefile$"], | ||
"matchStrings": [ | ||
"UPTEST_VERSION = (?<currentValue>.*?)\\n" | ||
], | ||
"datasourceTemplate": "github-releases", | ||
"depNameTemplate": "upbound/uptest", | ||
}, { | ||
"customType": "regex", | ||
"description": "Bump providers/functions/configurations in crossplane.yaml", | ||
"fileMatch": ["crossplane.yaml"], | ||
"matchStrings": [ | ||
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s*\\n\\s*version:\\s*\"(?<currentValue>[^\"]+)\"" | ||
], | ||
"datasourceTemplate": "{{{datasource}}}", | ||
"depNameTemplate": "{{{depName}}}", | ||
} | ||
customType: 'regex', | ||
description: 'Bump up version in the Makefile', | ||
fileMatch: [ | ||
'^Makefile$', | ||
], | ||
matchStrings: [ | ||
'UP_VERSION = (?<currentValue>.*?)\\n', | ||
], | ||
datasourceTemplate: 'github-releases', | ||
depNameTemplate: 'upbound/up', | ||
}, | ||
{ | ||
customType: 'regex', | ||
description: 'Bump uptest version in the Makefile', | ||
fileMatch: [ | ||
'^Makefile$', | ||
], | ||
matchStrings: [ | ||
'UPTEST_VERSION = (?<currentValue>.*?)\\n', | ||
], | ||
datasourceTemplate: 'github-releases', | ||
depNameTemplate: 'upbound/uptest', | ||
}, | ||
{ | ||
customType: 'regex', | ||
description: 'Bump providers/functions/configurations in crossplane.yaml', | ||
fileMatch: [ | ||
'crossplane.yaml', | ||
], | ||
matchStrings: [ | ||
'#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s*\\n\\s*version:\\s*"(?<currentValue>[^"]+)"', | ||
], | ||
datasourceTemplate: '{{{datasource}}}', | ||
depNameTemplate: '{{{depName}}}', | ||
}, | ||
], | ||
"git-submodules": { | ||
"enabled": true | ||
} | ||
} |