File tree Expand file tree Collapse file tree 2 files changed +53
-37
lines changed Expand file tree Collapse file tree 2 files changed +53
-37
lines changed Original file line number Diff line number Diff line change 1+ // https://docs.renovatebot.com/configuration-options/ - using .github/renovate.json5
2+ // https://docs.renovatebot.com/presets-config/#configbest-practices
3+ // https://docs.renovatebot.com/presets-config/#configrecommended
4+ {
5+ '$schema' : 'https://docs.renovatebot.com/renovate-schema.json' ,
6+ 'schedule' : [
7+ "every weekday"
8+ ] ,
9+ 'extends' : [
10+ 'config:recommended' ,
11+ 'docker:pinDigests' ,
12+ 'helpers:pinGitHubActionDigests' ,
13+ 'helpers:pinGitHubActionDigestsToSemver' ,
14+ ':semanticPrefixFixDepsChoreOthers' ,
15+ ':configMigration' ,
16+ ':pinDevDependencies' ,
17+ 'abandonments:recommended' ,
18+ ':disableDependencyDashboard' ,
19+ ':ignoreModulesAndTests' ,
20+ 'workarounds:all'
21+ ] ,
22+ 'packageRules' : [
23+ {
24+ 'matchDepTypes' : [
25+ "action"
26+ ] ,
27+ 'pinDigests' : true ,
28+ 'separateMajorMinor' : false
29+ } ,
30+ {
31+ 'extends' : [
32+ "helpers:pinGitHubActionDigests"
33+ ] ,
34+ 'extractVersion' : '^(?<version>v?\\d+\\.\\d+\\.\\d+)$' ,
35+ 'versioning' : "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+)\\.(?<patch>\\d+))?$"
36+ } ,
37+ {
38+ 'matchPackageNames' : [
39+ "**"
40+ ] ,
41+ 'rangeStrategy' : "replace"
42+ } ,
43+ {
44+ 'matchManagers' : [
45+ "npm"
46+ ] ,
47+ 'matchFileNames' : [
48+ "docs/**"
49+ ] ,
50+ 'enabled' : false
51+ }
52+ ]
53+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments