Best practice to get notified, when f.e. nextcloud minor version changes #861
-
I'm watching f.e. nextcloud with diun like this:
Sometimes I get an notification, but the (minor) version of nextcloud doesn't have changed. Thanks for your best practice instruction. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you want to check semver releases you need enable Looking at the tagging strategy: https://hub.docker.com/_/nextcloud I think the following configuration would work for you: - name: nextcloud:latest
watch_repo: true
include_tags:
- ^\d+\.\d+\.\d+$ |
Beta Was this translation helpful? Give feedback.
If you want to check semver releases you need enable
watch_repo
and also set a regular expression for tags to include. See the example for the file provider https://crazymax.dev/diun/providers/file/#exampleLooking at the tagging strategy: https://hub.docker.com/_/nextcloud I think the following configuration would work for you: