Compare commits

..

3 commits

Author SHA1 Message Date
0788fde69d only allow sops encryption of *.sops.* files
All checks were successful
/ Ansible Lint (pull_request) Successful in 2m31s
/ Ansible Lint (push) Successful in 13m55s
2026-03-06 20:21:33 +01:00
f345ff5e00
renovate: make exclusion of CalVer non-patch/-minor upgrades work
All checks were successful
/ Ansible Lint (push) Successful in 2m27s
Pretix and Pretalx both use CalVer, so we don't want to have upgrades to
their second number be identified as minor updates and get grouped with
all the other minor and patch updates.
The regex to re-classify the second number as major doesn't work.
Probably because of:
"Important: all capture groups must contain only purely numeric values."
(https://docs.renovatebot.com/modules/versioning/regex/)
So instead match on the minor update type for Pretix and Pretalx and set
the group name to null.
2026-03-06 19:53:24 +01:00
e98f6d68bd
Revert "wip: test renovate"
All checks were successful
/ Ansible Lint (push) Successful in 6m51s
This reverts commit 05d8c39b75.
Doesn't work.
2026-03-06 19:15:55 +01:00

View file

@ -30,19 +30,19 @@
"matchUpdateTypes": [
"minor",
"patch"
],
"matchJsonata": ["isBreaking != true"]
]
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["docker.io/pretix/standalone"],
"versioning": "regex:^(?<major>\\d+\\.\\d+)(?:\\.(?<minor>\\d+))$"
"matchUpdateTypes": ["minor"],
"groupName": null
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["docker.io/pretalx/standalone"],
"matchUpdateTypes": ["minor"],
"isBreaking": true
"groupName": null
}
],
"customManagers": [