From 52ef689cc4258949984e3c2466a8b819c7074dad Mon Sep 17 00:00:00 2001 From: PayalKhanna Date: Wed, 12 Jun 2024 16:27:31 +0100 Subject: [PATCH] removed extra bits --- .github/renovate.json | 54 ------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json deleted file mode 100644 index f9ac95a8..00000000 --- a/.github/renovate.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], - - "labels": ["dependencies"], - "dependencyDashboardLabels": ["dependencies"], - - "prConcurrentLimit": 4, - "prHourlyLimit": 2, - "timezone": "Europe/London", - "schedule": ["before 4am on Monday"], - - "assignees": ["SimonCockx"], - - "packageRules": [ - { - "description": "Group all Eclipse related dependencies (including Xtext). Because these dependencies often introduce breaking changes in minor version upgrades, we always require an explicit approval in the dependency dashboard before creating a PR.", - "matchPackagePatterns": ["^org\\.eclipse\\."], - "groupName": "eclipse dependencies", - "groupSlug": "eclipse-dependencies" - }, - { - "description": "Group all non-breaking dependency updates. A PR will be created automatically.", - "matchPackagePatterns": ["*"], - "excludePackagePatterns": ["^org\\.eclipse\\."], - "matchUpdateTypes": [ - "minor", - "patch" - ], - "groupName": "all non-breaking dependencies", - "groupSlug": "all-non-breaking" - } - ], - - "customManagers": [ - { - "description": "Because the Node version we use for building the VS Code plugin is managed by a Maven plugin, we need a custom regex version detection strategy. This rule matches versions defined as a Maven property of the form x.x.x.", - "fileMatch": ["\\.pom\\.xml$", "(^|/)pom\\.xml$"], - "matchStrings": ["(?.*?)<\\/node\\.version>"], - "depNameTemplate": "node", - "datasourceTemplate": "node" - }, - { - "description": "Detect Maven goals in GitHub workflows and actions.", - "fileMatch": ["(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$", "(^|/)action\\.ya?ml$"], - "matchStrings": ["mvn (?[^\\s:]+:[^\\s:]+):(?[^\\s:]+):[^\\s:]+"], - "datasourceTemplate": "maven" - } - ], - - "ignoreDeps": ["org.eclipse.m2e:lifecycle-mapping", "com.regnosys.rosetta:com.regnosys.rosetta.parent"] -}