-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
33 lines (33 loc) · 1 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
// Fix default branch rebasing - always rebase still-open temporary branches, whenever its source branch has changed
"rebaseWhen": "behind-base-branch",
"rollbackPrs": true,
"packageRules": [
{
"description": "Automatically merge minor and patch-level updates, if tests were successful",
"matchUpdateTypes": [
"minor",
"patch",
"digest"
],
"automerge": true,
}
],
"dependencyDashboardTitle": "Renovate Bot dependency dashboard",
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^\\.github/actions/build-app/action\\.yaml$"
],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s*python-version: \"(?<currentValue>.*)\"\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}