SIMSBIOHUB-874: Ensure GitHub workflows clean up ImageStream tags#1607
Merged
dylanrogowsky-oxd merged 2 commits intodevfrom Feb 11, 2026
Merged
SIMSBIOHUB-874: Ensure GitHub workflows clean up ImageStream tags#1607dylanrogowsky-oxd merged 2 commits intodevfrom
dylanrogowsky-oxd merged 2 commits intodevfrom
Conversation
|
OpenShift URLs for the PR Deployment:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #1607 +/- ##
==========================================
+ Coverage 33.05% 33.50% +0.44%
==========================================
Files 1034 1035 +1
Lines 65196 65951 +755
Branches 2357 2490 +133
==========================================
+ Hits 21553 22097 +544
- Misses 43103 43270 +167
- Partials 540 584 +44 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
b7bb4cf to
6209ba6
Compare
|
OpenShift URLs for the PR Deployment:
|
|
OpenShift URLs for the PR Deployment:
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Links to Jira Tickets
Description of Changes
cleanClosedPR.ymltocleanPR.yml. It now runs whenever a PR is closed (merged or not) or converted back to draft, and removes that PR’s Helm release in dev plus all four image tags (app, api, db, db-setup) in -tools. We no longer have separate workflows for “closed” vs “merged.”cleanMergedPR.yml— its behaviour is covered by the updated cleanPR workflow.deployStatic.yml: Replaced the post-deploy “clean” job with “pruneOldImageTags.” After a merge or manual run, we now prune old image tags for that environment (dev/test/prod) and keep only the 3 most recent per image, so ImageStream doesn’t accumulate tags. PR-specific cleanup is handled by cleanPR when the PR closes.Testing Notes