Skip to content

Commit

Permalink
add renovate
Browse files Browse the repository at this point in the history
Renovate is a bot utility that allows to update dependencies in the
repository. It's similar to dependabot but unfortunately dependabot lacks
the ability to update docker images from ARG in Dockerfiles
(dependabot/dependabot-core#2057). Thus, we
will be adding renovate to update Dockerfile base images while
dependabot's GH issue is not fixed.

For future reference the documentation is available in:
- https://github.com/renovatebot/tutorial
- https://docs.renovatebot.com/configuration-options

Signed-off-by: André Martins <[email protected]>
  • Loading branch information
aanm authored and vishal-chdhry committed Nov 27, 2022
1 parent d53b2cc commit 6090f80
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"includePaths": ["images/**"],
"ignorePresets": [":prHourlyLimit2"],
"separateMajorMinor": true,
"separateMultipleMajor": true,
"separateMinorPatch": true,
"baseBranches": [
"master",
"v1.12",
"v1.11",
"v1.10"
],
"labels": [
"kind/enhancement",
"release-note/misc"
]
}

0 comments on commit 6090f80

Please sign in to comment.