-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefault.json5
58 lines (58 loc) · 2.11 KB
/
default.json5
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
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:best-practices", ":automergeDigest", ":automergeBranch"],
vulnerabilityAlerts: {
labels: ["security"],
schedule: "at any time",
},
prHourlyLimit: 3,
platform: "github",
onboarding: false,
dependencyDashboard: true,
dependencyDashboardTitle: "Renovate Dashboard 🤖",
suppressNotifications: ["prIgnoreNotification"],
rebaseWhen: "conflicted",
reviewers: ["team:modules"],
assigneesFromCodeOwners: true,
gitAuthor: "nf-core-bot <[email protected]>",
"pre-commit": {
enabled: true,
},
customManagers: [
{
customType: "regex",
description: "Process Containers dependencies",
fileMatch: ["(^|/)main\\.nf$"],
matchStrings: [
"\\s+'(?<depName>\\S+):(?<currentValue>.*\\-.*)' }\"\n",
],
datasourceTemplate: "docker",
},
{
customType: "regex",
description: "Upgrade conda dependencies",
fileMatch: ["(^|/)environment(.*).ya?ml$"],
matchStrings: [
"#\\s*renovate\\s+datasource=conda\\s+depName=(?<depName>.*?)\\s+-\\s*[\\w-]+\\s*==?\\s*\"?(?<currentValue>.*)\"?",
"# renovate: datasource=conda depName=(?<depName>.*?)\\s+-\\s*[\\w-]+\\s*==?\\s*\"?(?<currentValue>.*)\"?"
],
datasourceTemplate: "conda"
},
{
customType: "regex",
description: "Upgrade pypi dependencies inside conda environment files",
fileMatch: ["(^|/)environment(.*).ya?ml$"],
matchStrings: [
"# renovate datasource=pypi\\s+-\\s*(?<depName>[\\w-]+)\\s*(\\[[\\w,\\s]+\\])?\\s*==?\\s*(?<currentValue>.*)",
"# renovate: datasource=pypi\\s+-\\s*(?<depName>[\\w-]+)\\s*(\\[[\\w,\\s]+\\])?\\s*==?\\s*(?<currentValue>.*)"
],
datasourceTemplate: "pypi"
},
],
packageRules: [
{
matchDatasources: ["docker"],
registryUrls: ["quay.io"],
},
],
}