forked from aws-samples/eks-workshop-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
32 lines (32 loc) · 980 Bytes
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":rebaseStalePrs"],
"schedule": ["on the first day of the month"],
"enabledManagers": ["custom.regex", "github-actions", "terraform"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions"
},
{
"matchManagers": ["terraform"],
"groupName": "Terraform"
},
{
"matchDepTypes": ["required_version"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["lab/scripts/installer.sh"],
"matchStrings": [
"depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s.*?_version='(?<currentValue>.*)'\\s"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"ignoreDeps": ["github.com/aws-ia/terraform-aws-eks-blueprints"]
}