diff options
Diffstat (limited to 'renovate.json')
-rw-r--r-- | renovate.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..de95ff5 --- /dev/null +++ b/renovate.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>forgejo/renovate-config"], + "packageRules": [ + { + "description": "Disable runner test data", + "matchFileNames": ["pkg/runner/testdata/**"], + "enabled": false + }, + { + "description": "Require approval for all dependencies", + "matchDepNames": ["/.+/"], + "dependencyDashboardApproval": true + }, + { + "description": "Separate minor and patch for some packages", + "matchDepNames": ["github.com/rhysd/actionlint"], + "separateMinorPatch": true + } + ] +} |