Github tags & Renovate
Hi there,
Could someone share some insights to why would Renovate even find an major update for it?
https://github.com/samip5/k8s-cluster/actions/runs/3904758120/jobs/6670946037#step:5:3495
GitHub
ci(renovate): Fix typo · samip5/k8s-cluster@b906fc5
GitOps/Flux2 managed full-stack Kubernetes cluster. - ci(renovate): Fix typo · samip5/k8s-cluster@b906fc5
5 Replies
Immich pushes docker images to registries with release tags following the pattern v40.1.6, etc (as you'd expect), but also with PR numbers - 1313 here refers the docker images built from the latest pull request: https://github.com/immich-app/immich/pull/1311
Docker doesn't dictate how tags are use or what pattern they follow.
In case people cannot see the logs, what I mean is:
So the option to fix that is probably just configure Renovate properly to accept only that pattern with v in it. Is there an actual pattern somewhere where that is specified for releases?
Tags follow this format right now, so if you can configure it to ignore anything that doesn't start with a v, that'd probably work.

Looks like you should be able to accomplish this with regex versioning
^v(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)_.+$
