-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
69 lines (69 loc) · 2.06 KB
/
config.js
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
module.exports = {
platform: 'azure',
endpoint: 'https://dev.azure.com/tjip/',
token: process.env.TOKEN,
prConcurrentLimit: 0,
branchConcurrentLimit: 0,
packageRules: [
{
groupName: "all non-major dependencies",
groupSlug: "all-minor-patch",
matchPackagePatterns: [
"*"
],
matchUpdateTypes: [
"minor",
"patch"
]
}
],
"ignorePaths": [
"**/.tools/**",
"**/apps/**",
"**/packages/Hypotheken.Common.Authentication/**",
"**/packages/Hypotheken.Common.Authorization/**",
"**/packages/Hypotheken.Common.Documentation/**",
"**/packages/Hypotheken.Common.Health/**",
"**/packages/Hypotheken.Common.Logging/**",
"**/packages/Hypotheken.Common.Messaging/**",
"**/packages/Hypotheken.Common.Serialization/**",
"**/packages/Hypotheken.Common.Storage/**",
"**/packages/Hypotheken.Features/**",
"**/packages/Hypotheken.HttpStandards/**",
"**/unmanaged/**"
],
ignoreDeps: [
"Moq",
"Microsoft.CodeAnalysis.Common",
"Microsoft.CodeAnalysis.CSharp",
"Microsoft.CodeAnalysis.Workspaces.Common"
],
nuget: {
registryUrls: [
"https://api.nuget.org/v3/index.json",
"https://pkgs.dev.azure.com/tjip/_packaging/Tjip-Components/nuget/v3/index.json",
"https://pkgs.dev.azure.com/tjip/AbnAmro/_packaging/Hypotheek-NuGet/nuget/v3/index.json",
],
},
hostRules: [
{
hostType: 'nuget',
matchHost: 'https://pkgs.dev.azure.com/tjip/_packaging/Tjip-Components/nuget/v3/index.json',
username: 'tjip_nuget_feed_user',
password: process.env.TJIP_NUGET_FEED_TOKEN,
},
{
hostType: 'nuget',
matchHost: 'https://pkgs.dev.azure.com/tjip/AbnAmro/_packaging/Hypotheek-NuGet/nuget/v3/index.json',
username: 'ArtifactsDocker',
password: process.env.TJIP_NUGET_FEED_TOKEN,
},
{
hostType: 'nuget',
matchHost: 'https://pkgs.dev.azure.com/tjip/',
username: 'tjip_nuget_feed_user',
password: process.env.TJIP_NUGET_FEED_TOKEN,
},
],
repositories: ['AbnAmro/Hypotheek'],
};