summaryrefslogtreecommitdiffstats
path: root/renovate.json
diff options
context:
space:
mode:
authorMichael Kriese <michael.kriese@visualon.de>2024-03-25 12:56:20 +0100
committerMichael Kriese <michael.kriese@visualon.de>2024-03-25 13:03:20 +0100
commit102531cba1b0b8382cb6c47cf814f0b137cf1fcd (patch)
tree6fb76afda2e69d2001dfcd6a32179d5ad1e43757 /renovate.json
parentMerge pull request 'Add renovate' (#2775) from viceice/forgejo:chore/renovate... (diff)
downloadforgejo-102531cba1b0b8382cb6c47cf814f0b137cf1fcd.tar.xz
forgejo-102531cba1b0b8382cb6c47cf814f0b137cf1fcd.zip
Update renovate configs
Diffstat (limited to 'renovate.json')
-rw-r--r--renovate.json20
1 files changed, 8 insertions, 12 deletions
diff --git a/renovate.json b/renovate.json
index 74d468e6c0..364a15d420 100644
--- a/renovate.json
+++ b/renovate.json
@@ -3,6 +3,7 @@
"extends": ["config:best-practices", ":approveMajorUpdates"],
"ignorePresets": [":semanticPrefixFixDepsChoreOthers"],
"semanticCommits": "disabled",
+ "postUpdateOptions": ["gomodUpdateImportPaths", "npmDedupe"],
"packageRules": [
{
"description": "Require approval for go and python minor version",
@@ -22,25 +23,20 @@
"matchDatasources": ["docker"],
"matchDepNames": ["ghcr.io/visualon/renovate"],
"extends": ["schedule:daily"]
+ },
+ {
+ "description": "Disable actions/cascading-pr for now <https://github.com/renovatebot/renovate/issues/28120>",
+ "matchDepNames": ["actions/cascading-pr"],
+ "matchManagers": ["github-actions"],
+ "enabled": false
}
],
"customManagers": [
{
- "description": "Update docker images in forgejo workflows",
- "customType": "regex",
- "fileMatch": ["^.forgejo/workflows/.+\\.yml$"],
- "matchStrings": [
- "\\s+image:\\s+['\"]?(?<depName>.+?):(?<currentValue>.+?)['\"]?\\s"
- ],
- "datasourceTemplate": "docker"
- },
- {
"description": "Update go-version in forgejo workflows",
"customType": "regex",
"fileMatch": ["^.forgejo/workflows/.+\\.yml$"],
- "matchStrings": [
- "\\s+go-version: ['\"]?(?<currentValue>.+?)['\"]?\\s"
- ],
+ "matchStrings": ["\\s+go-version: ['\"]?(?<currentValue>.+?)['\"]?\\s"],
"depNameTemplate": "go",
"datasourceTemplate": "golang-version",
"versioningTemplate": "go-mod-directive"