diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..46f9340 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,26 @@ +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + ], + crossplane: { + fileMatch: [ + '(^|/)example/.*\\.ya?ml$', + ], + }, + packageRules: [ + { + matchManagers: [ + 'crossplane', + ], + matchFileNames: [ + 'example/**', + ], + groupName: 'examples', + }, + ], + postUpdateOptions: [ + 'gomodTidy', + 'gomodUpdateImportPaths', + ], +}