Skip to content

Comments

fix: only track minor versions in auto-update workflow#45

Merged
AaronFeledy merged 1 commit intomainfrom
fix/minor-versions-only
Feb 23, 2026
Merged

fix: only track minor versions in auto-update workflow#45
AaronFeledy merged 1 commit intomainfrom
fix/minor-versions-only

Conversation

@AaronFeledy
Copy link
Member

@AaronFeledy AaronFeledy commented Feb 22, 2026

The grep pattern in auto-update-versions.yml was '^v[0-9]+\.[0-9]+(\.[0-9]+)?$' which matches both minor (v1.25) and patch (v1.25.1) versions. Since Docker minor tags (e.g. mailpit:1.25) already include the latest patch, tracking patch releases just creates unnecessary PRs.

Changed to '^v[0-9]+\.[0-9]+$' so only minor version tags are considered.


Note

Low Risk
Small CI-only change to a tag-matching regex; minimal chance of impact beyond potentially skipping patch-only update PRs.

Overview
The auto-update GitHub Actions workflow now filters Docker Hub tags to only consider minor versions (vX.Y) and ignore patch tags (vX.Y.Z).

This reduces noisy auto-generated update PRs since minor tags already point to the latest patch release.

Written by Cursor Bugbot for commit c650e7e. This will update automatically on new commits. Configure here.

The grep pattern was matching patch versions (e.g. v1.25.1) in addition
to minor versions (v1.25). Since Docker minor tags already include
patches, tracking patch releases just creates noise PRs.
@netlify
Copy link

netlify bot commented Feb 22, 2026

Deploy Preview for lando-mailpit failed. Why did it fail? →

Name Link
🔨 Latest commit c650e7e
🔍 Latest deploy log https://app.netlify.com/projects/lando-mailpit/deploys/699b8ac7b4607c00081b4497

@AaronFeledy AaronFeledy merged commit 4caa3b0 into main Feb 23, 2026
10 of 14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant