Clean up incorrect version tags across all Drupal modules
Objective
Use the version-tag-manager component to clean up incorrect v1.x+ and v2.x tags and apply correct v0.1.3 tags.
Problem
Incorrect tags were created:
- v1.1.0, v1.1.1 (should not exist)
- v2.0.1, v2.0.2 (should not exist)
Legitimate tag to preserve:
- v1.0.0 (August release)
Solution
Run the version-tag-manager pipeline with:
inputs:
target_version: "v0.1.3"
cleanup_tags: "v1.[1-9]*,v2.*"
preserve_tags: "v1.0.0,v0.1.0,v0.1.1,v0.1.2"
dry_run: false
require_manual_approval: true
Steps
-
Prerequisites:
-
Dry Run:
-
Run pipeline with dry_run: true
-
Review scan report artifact -
Review execution plan artifact
-
-
Production Run:
-
Run pipeline with dry_run: false
-
Review and approve at manual gate -
Wait for cleanup completion -
Wait for tagging completion -
Review verification report
-
-
Verification:
-
All wrong tags removed -
All modules tagged with v0.1.3 -
CI pipelines triggered for package publishing
-
Affected Modules
18 Drupal modules will be retagged.
Success Criteria
-
No v1.x+ or v2.x tags remain (except v1.0.0) -
All modules have v0.1.3 tag -
Packages published to GitLab Composer Registry -
Verification report shows 100% success
Related
- Version Tag Manager Component wiki
- Issue: Merge version-tag-manager component
- Issue: Update module CI configs