ci: replace `matchCurrentVersion` RegExp negate with semver version (#41886)
While RegExp negation should work as per documentation https://docs.renovatebot.com/configuration-options/#matchcurrentversion it appears that in this case it is not working. See the following commit 076f13da86
, therefore we work around this by using a semver version that excludes anything which doesn't match `>= 1`.
PR Close #41886
This commit is contained in:
parent
e53c80c7ca
commit
77d920e461
|
@ -126,7 +126,7 @@
|
||||||
"minor",
|
"minor",
|
||||||
"patch"
|
"patch"
|
||||||
],
|
],
|
||||||
"matchCurrentVersion": "!/^0\\./",
|
"matchCurrentVersion": ">=1",
|
||||||
"groupName": "all non-major dependencies",
|
"groupName": "all non-major dependencies",
|
||||||
"groupSlug": "all-minor-patch",
|
"groupSlug": "all-minor-patch",
|
||||||
"schedule": [
|
"schedule": [
|
||||||
|
|
Loading…
Reference in New Issue