[DSD-9516] move images from mosipdev to mosipqa - #1489
Conversation
Signed-off-by: gaganamadival <94885434+gaganamadival@users.noreply.github.com>
WalkthroughThe pull request modifies Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes
Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| mosipdev/pmp-ui-v2:develop develop | ||
| mosipdev/partner-management-service:develop develop | ||
| mosipdev/policy-management-service:develop develop | ||
| mosipdev/uitest-pmp-v2:develop develop |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
# First, check if the file exists and examine its content
if [ -f "release/vidivi/images.txt" ]; then
echo "=== File content with line numbers ==="
cat -n "release/vidivi/images.txt"
echo ""
echo "=== File stats ==="
wc -l "release/vidivi/images.txt"
else
echo "File release/vidivi/images.txt does not exist"
echo "Checking for related files..."
find . -name "images.txt" -type f 2>/dev/null | head -20
fiRepository: mosip/release-script
Length of output: 196
🏁 Script executed:
# Check git history for this file to see the changes
if [ -f "release/vidivi/images.txt" ]; then
echo "=== Git log for the file ==="
git log --oneline -n 10 -- release/vidivi/images.txt
echo ""
echo "=== Git diff (last commit) ==="
git diff HEAD~1 HEAD -- release/vidivi/images.txt || git show HEAD:release/vidivi/images.txt
fiRepository: mosip/release-script
Length of output: 265
🏁 Script executed:
# Look for git log messages that might contain PR title or context
git log --oneline -n 20 | head -20Repository: mosip/release-script
Length of output: 119
Critical: Image registry doesn't match the migration intent stated in commit message.
The commit "[DSD-9516] move images from mosipdev to mosipqa" indicates the images should be migrated to the mosipqa registry, but the implementation still references mosipdev: mosipdev/uitest-pmp-v2:develop develop.
Update the image reference to use mosipqa registry to align with the stated migration goal, or clarify if the commit message was incorrect.
Additionally, confirm whether the duplicate develop string in mosipdev/uitest-pmp-v2:develop develop is intentional or a formatting error.
🤖 Prompt for AI Agents
In release/vidivi/images.txt around line 1, the image reference still points to
mosipdev and contains a duplicated "develop" token; update the registry from
mosipdev to mosipqa so the line reads the intended mosipqa image, and remove the
duplicate trailing "develop" if it is a formatting mistake (or if the second
word is intended as a tag or label, clarify its purpose and adjust to the
correct syntax like "mosipqa/uitest-pmp-v2:develop"). Ensure the final line uses
the correct registry and valid image:tag syntax and add a brief comment in the
commit message if the original commit message was incorrect.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.