-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
33 lines (32 loc) · 877 Bytes
/
config.js
File metadata and controls
33 lines (32 loc) · 877 Bytes
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
33
const Fs = require('fs');
module.exports = {
"platform": "github",
"token": process.env.RENOVATE_TOKEN,
"repositories": [
"ik-workshop/<CHANGE_ME>"
],
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"pruneStaleBranches": true,
"recreateWhen": "always",
"onboarding": false,
"requireConfig": "optional",
"baseBranches": ["master", "main"],
"packageRules": [
// {
// "matchDatasources": ["aws-eks-addon"],
// }
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [".*\\.tf"],
"matchStrings": [
".*# renovate: eksAddonsFilter=(?<packageName>.*?)\n.*?[a-zA-Z0-9-_:]*[ ]*?[:|=][ ]*?[\"|']?(?<currentValue>[a-zA-Z0-9-_.]+)[\"|']?.*"
],
// "datasourceTemplate": "aws-eks-addon",
// "versioningTemplate": "aws-eks-addon"
}
]
}