-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #472 from manala/renovate/configure
Configure Renovate
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
"enabledManagers": [ | ||
"regex" | ||
], | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["Dockerfile\\.tmpl"], | ||
"matchStrings": ["ARG GOSU_VERSION=\"(?<currentValue>.+)\""], | ||
"depNameTemplate": "gosu", | ||
"datasourceTemplate": "github-releases", | ||
"packageNameTemplate": "tianon/gosu" | ||
}, | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["Dockerfile\\.tmpl"], | ||
"matchStrings": ["ARG GOMPLATE_VERSION=\"(?<currentValue>.+)\""], | ||
"depNameTemplate": "gomplate", | ||
"datasourceTemplate": "github-releases", | ||
"packageNameTemplate": "hairyhenderson/gomplate", | ||
"extractVersionTemplate": "^v(?<version>.+)$" | ||
}, | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["Dockerfile\\.tmpl"], | ||
"matchStrings": ["ARG DIRENV_VERSION=\"(?<currentValue>.+)\""], | ||
"depNameTemplate": "direnv", | ||
"datasourceTemplate": "github-releases", | ||
"packageNameTemplate": "direnv/direnv", | ||
"extractVersionTemplate": "^v(?<version>.+)$" | ||
}, | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["Dockerfile\\.tmpl"], | ||
"matchStrings": ["ARG JQ_VERSION=\"(?<currentValue>.+)\""], | ||
"depNameTemplate": "jq", | ||
"datasourceTemplate": "github-releases", | ||
"packageNameTemplate": "jqlang/jq", | ||
"extractVersionTemplate": "^jq (?<version>.+)$" | ||
}, | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["Dockerfile\\.tmpl"], | ||
"matchStrings": ["ARG YQ_VERSION=\"(?<currentValue>.+)\""], | ||
"depNameTemplate": "yq", | ||
"datasourceTemplate": "github-releases", | ||
"packageNameTemplate": "mikefarah/yq", | ||
"extractVersionTemplate": "^v(?<version>.+)$" | ||
}, | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["Makefile"], | ||
"matchStrings": ["_HADOLINT_VERSION = (?<currentValue>.+)"], | ||
"depNameTemplate": "hadolint", | ||
"datasourceTemplate": "docker", | ||
"packageNameTemplate": "hadolint/hadolint" | ||
} | ||
] | ||
} |