We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a3792 commit f498bb6Copy full SHA for f498bb6
.github/renovate.json5
@@ -0,0 +1,25 @@
1
+{
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:recommended"
5
+ ],
6
+ "packageRules": [
7
+ // Rules are evaluated top to bottom, all matching rules are applied
8
+ {
9
+ // Disable major and minor updates of MPS libraries and MPS (e.g. 2024.1 -> 2024.3)
10
+ "matchPackageNames": [
11
+ "com.jetbrains:mps",
12
+ "org.mpsqa:all-in-one",
13
+ "com.mbeddr:platform"
14
15
+ "matchUpdateTypes": ["major", "minor"],
16
+ "enabled": false
17
+ },
18
+
19
+ // Disallow mps-gradle-plugin v2
20
21
+ "matchPackageNames": ["de.itemis.mps:mps-gradle-plugin"],
22
+ "allowedVersions": "!/^2\\./"
23
+ }
24
25
+}
0 commit comments