-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Migrate renovate config https://github.com/renovatebot/renovate/blob/main/docs/usage/config-validation.md renovate-config-validator * style: Add renovate to prettier ignore list
- Loading branch information
1 parent
420c204
commit 2ad9beb
Showing
2 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
{ | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: ["config:base"], | ||
platform: "github", | ||
onboarding: false, | ||
dependencyDashboard: true, | ||
dependencyDashboardTitle: "Renovate Dashboard 🤖", | ||
suppressNotifications: ["prIgnoreNotification"], | ||
rebaseWhen: "conflicted", | ||
reviewers: ["team:maintainers"], | ||
regexManagers: [ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:recommended"], | ||
"platform": "github", | ||
"onboarding": false, | ||
"dependencyDashboard": true, | ||
"dependencyDashboardTitle": "Renovate Dashboard 🤖", | ||
"suppressNotifications": ["prIgnoreNotification"], | ||
"rebaseWhen": "conflicted", | ||
"reviewers": ["team:maintainers"], | ||
"regexManagers": [ | ||
{ | ||
description: "Process Conda dependencies", | ||
fileMatch: ["(^|/)main\\.nf$"], | ||
matchStrings: ['\\s+conda\\s+"(?<registryUrl>\\S+)::(?<depName>\\S+)=(?<currentValue>.*\\-.*)\'"\n'], | ||
datasourceTemplate: "conda", | ||
"customType": "regex", | ||
"description": "Process Conda dependencies", | ||
"fileMatch": ["(^|/)main\\.nf$"], | ||
"matchStrings": ["\\s+conda\\s+\"(?<registryUrl>\\S+)::(?<depName>\\S+)=(?<currentValue>.*\\-.*)'\"\n"], | ||
"datasourceTemplate": "conda" | ||
}, | ||
{ | ||
description: "Process Containers dependencies", | ||
fileMatch: ["(^|/)main\\.nf$"], | ||
matchStrings: ["\\s+'(?<depName>\\S+):(?<currentValue>.*\\-.*)' }\"\n"], | ||
datasourceTemplate: "docker", | ||
}, | ||
"customType": "regex", | ||
"description": "Process Containers dependencies", | ||
"fileMatch": ["(^|/)main\\.nf$"], | ||
"matchStrings": ["\\s+'(?<depName>\\S+):(?<currentValue>.*\\-.*)' }\"\n"], | ||
"datasourceTemplate": "docker" | ||
} | ||
], | ||
packageRules: [ | ||
"packageRules": [ | ||
{ | ||
matchDatasources: ["docker"], | ||
registryUrls: [ | ||
"quay.io", | ||
"registry.hub.docker.com", // We need this for updating depedancies in Dockerfiles | ||
], | ||
}, | ||
], | ||
"matchDatasources": ["docker"], | ||
"registryUrls": ["quay.io", "registry.hub.docker.com"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ tests/data/ | |
__pycache__ | ||
*.pyo | ||
*.pyc | ||
.github/renovate.json5 |