diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..6212bb6 --- /dev/null +++ b/renovate.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "dependencyDashboard": true, + "enabledManagers": ["github-actions", "gomod"], + "osvVulnerabilityAlerts": true, + "minimumReleaseAge": "7 days", + "minimumReleaseAgeBehaviour": "timestamp-required", + "prCreation": "not-pending", + "internalChecksFilter": "strict", + "vulnerabilityAlerts": { + "minimumReleaseAge": null, + "prCreation": "immediate" + }, + "packageRules": [ + { + "matchManagers": ["gomod"], + "groupName": "Go dependencies", + "groupSlug": "go-dependencies", + "postUpdateOptions": ["gomodTidy"] + } + ] +}