mirror of https://github.com/nocodb/nocodb
Raju Udava
1 year ago
11 changed files with 125 additions and 12 deletions
@ -1,6 +1,10 @@
|
||||
{ |
||||
"packages": [ |
||||
"packages/*" |
||||
"packages/nc-cli", |
||||
"packages/nc-gui", |
||||
"packages/nc-plugin", |
||||
"packages/nocodb", |
||||
"packages/nocodb-sdk" |
||||
], |
||||
"version": "independent" |
||||
} |
||||
|
@ -0,0 +1,65 @@
|
||||
{ |
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", |
||||
"extends": [ |
||||
"config:base", |
||||
":dependencyDashboard", |
||||
":onlyNpm", |
||||
":prConcurrentLimit20", |
||||
":autodetectPinVersions", |
||||
":label(renovate)", |
||||
":rebaseStalePrs", |
||||
":semanticPrefixFixDepsChoreOthers", |
||||
":separatePatchReleases", |
||||
"group:monorepos", |
||||
"group:recommended" |
||||
], |
||||
"baseBranches": [ |
||||
"develop" |
||||
], |
||||
"vulnerabilityAlerts": { |
||||
"commitMessagePrefix": "chore(renovate): Security update" |
||||
}, |
||||
"schedule": "at any time", |
||||
"rangeStrategy": "bump", |
||||
"packageRules": [ |
||||
{ |
||||
"matchPackagePatterns": ["*"], |
||||
"matchUpdateTypes": ["major"], |
||||
"reviewersFromCodeOwners": true, |
||||
"commitMessagePrefix": "chore(renovate):", |
||||
"groupName": "major" |
||||
}, |
||||
{ |
||||
"matchPackagePatterns": ["*"], |
||||
"matchUpdateTypes": ["minor"], |
||||
"commitMessagePrefix": "chore(renovate):", |
||||
"groupName": "minor" |
||||
}, |
||||
{ |
||||
"matchPackagePatterns": ["*"], |
||||
"matchUpdateTypes": ["patch"], |
||||
"commitMessagePrefix": "chore(renovate):", |
||||
"groupName": "patch" |
||||
}, |
||||
{ |
||||
"matchPackagePatterns": ["*"], |
||||
"matchUpdateTypes": ["pin", "digest"], |
||||
"commitMessagePrefix": "chore(renovate):", |
||||
"groupName": "pin" |
||||
} |
||||
], |
||||
"ignorePaths": [ |
||||
"**/node_modules/**", |
||||
"**/nc-cli/**", |
||||
"**/nc-lib-gui/**", |
||||
"**/nc-plugin/**", |
||||
"**/nocodb-legacy/**", |
||||
"**/test/**", |
||||
"**/tests/**", |
||||
"**/workflows/**", |
||||
"**/charts/**" |
||||
], |
||||
"assignees": [ |
||||
"wingkwong" |
||||
] |
||||
} |
Loading…
Reference in new issue