-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
30 lines (29 loc) · 907 Bytes
/
config.js
File metadata and controls
30 lines (29 loc) · 907 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
// renovate config
Object.assign(process.env, {
GIT_AUTHOR_NAME: 'Renovate Bot',
GIT_AUTHOR_EMAIL: 'buildbot@act3-ace.com',
GIT_COMMITTER_NAME: 'Renovate Bot',
GIT_COMMITTER_EMAIL: 'buildbot@act3-ace.com',
});
module.exports = {
endpoint: process.env.CI_API_V4_URL,
hostRules: [
{
matchHost: 'https://reg.git.act3-ace.com/',
username: process.env.CI_REGISTRY_USER,
password: process.env.CI_REGISTRY_PASSWORD,
},
],
regexManagers: [
{
fileMatch: ["(^|/).act3-pt.yml$"],
matchStrings: ["# renovate: depName=(?<depName>.*?)\\s+version: (?<currentValue>.*)"],
datasourceTemplate: "gitlab-tags",
registryUrlTemplate: "https://git.act3-ace.com/",
ignorePaths: ["**/templates/**"]
},
],
platform: 'gitlab',
username: 'renovate-bot',
autodiscover: true,
};