-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
72 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: ['config:recommended'], | ||
timezone: 'Europe/Zurich', | ||
schedule: 'after 5pm on the first day of the month', | ||
labels: ['dependencies'], | ||
separateMajorMinor: true, | ||
separateMinorPatch: true, | ||
prHourlyLimit: 0, | ||
prConcurrentLimit: 0, | ||
html: { | ||
fileMatch: ['\\.html?$', '\\.html?.mako$'], | ||
}, | ||
lockFileMaintenance: { | ||
enabled: true, | ||
automerge: true, | ||
schedule: 'after 5pm on the first day of the month', | ||
}, | ||
baseBranches: ['v3.0.0','master'], | ||
regexManagers: [ | ||
/** Do update on the schema present in the ci/config.yaml */ | ||
{ | ||
fileMatch: ['^ci/config\\.yaml$'], | ||
matchStrings: [ | ||
'.*https://raw\\.githubusercontent\\.com/(?<depName>[^\\s]+)/(?<currentValue>[0-9\\.]+)/.*', | ||
], | ||
datasourceTemplate: 'github-tags', | ||
} | ||
], | ||
packageRules: [ | ||
/** Auto merge the dev dependency update */ | ||
{ | ||
matchDepTypes: ['devDependencies'], | ||
automerge: true, | ||
}, | ||
/** Group and auto merge the patch updates */ | ||
{ | ||
matchUpdateTypes: ['patch'], | ||
groupName: 'all patch versions', | ||
automerge: true, | ||
}, | ||
/** Group and auto merge the minor updates */ | ||
{ | ||
matchUpdateTypes: ['minor'], | ||
groupName: 'all minor versions', | ||
automerge: true, | ||
}, | ||
/** Accept only the patch on stabilization branches */ | ||
{ | ||
matchBaseBranches: ['/^v[0-9]+\\.[0-9]+\\.[0-9]+$/'], | ||
matchUpdateTypes: ['major', 'minor', 'pin', 'digest', 'lockFileMaintenance', 'rollback', 'bump'], | ||
enabled: false, | ||
} | ||
/** Group and auto merge the CI dependencies */ | ||
{ | ||
matchFileNames: ['.github/**', 'ci/**'], | ||
groupName: 'CI dependencies', | ||
automerge: true, | ||
}, | ||
/** Packages published very recently are not pushed to stabilization branches for security reasons */ | ||
{ | ||
matchBaseBranches: ['/^v[0-9]+\\.[0-9]+\\.[0-9]+$/'], | ||
minimumReleaseAge: '7 days', | ||
}, | ||
/** Ungroup Python dependencies */ | ||
{ | ||
matchDepNames: ['python'], | ||
groupName: 'Python', | ||
}, | ||
], | ||
} |
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