[DSD-9638] injistackdev to injistackdev2 - #1522
Conversation
Signed-off-by: gaganamadival <94885434+gaganamadival@users.noreply.github.com>
Signed-off-by: gaganamadival <94885434+gaganamadival@users.noreply.github.com>
WalkthroughUpdated a container image reference in the release configuration file, replacing Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@release/vidivi/images.txt`:
- Line 1: The image reference currently uses
injistackdev/apitest-inji-certify:develop which is inconsistent with the PR
intent; update the registry/namespace to injistackdev2 and replace the develop
tag with a stable release tag (e.g., change
injistackdev/apitest-inji-certify:develop to
injistackdev2/apitest-inji-certify:<stable-version>) ensuring the new
<stable-version> is the proper semantic or released version for production.
| @@ -1 +1 @@ | |||
| injistackdev/inji-certify-with-plugins:develop develop | |||
| injistackdev/apitest-inji-certify:develop develop | |||
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Check if injistackdev2 registry exists and find other references to these registries
# Search for other occurrences of injistackdev or injistackdev2 in the repository
echo "=== Searching for injistackdev references ==="
rg -n "injistackdev" --type txt
echo -e "\n=== Searching for injistackdev2 references ==="
rg -n "injistackdev2" --type txt
echo -e "\n=== Searching for inji-certify related images ==="
rg -n "inji-certify" --type txt
# Also check git log/commit messages for the PR title
echo -e "\n=== Checking git history for DSD-9638 ==="
git log --all --oneline | grep -i "DSD-9638\|injistackdev2" | head -20Repository: mosip/release-script
Length of output: 515
Critical: PR title and actual changes are inconsistent.
The git commit message indicates changing "injistackdev to injistackdev2", but the image reference still uses injistackdev as the registry/namespace. Additionally, the develop tag is being used in a release configuration file, which is typically inappropriate for production releases.
Please fix:
- Update the registry/namespace to
injistackdev2as indicated in the PR intent - Replace the
developtag with a stable version tag appropriate for release configurations
🤖 Prompt for AI Agents
In `@release/vidivi/images.txt` at line 1, The image reference currently uses
injistackdev/apitest-inji-certify:develop which is inconsistent with the PR
intent; update the registry/namespace to injistackdev2 and replace the develop
tag with a stable release tag (e.g., change
injistackdev/apitest-inji-certify:develop to
injistackdev2/apitest-inji-certify:<stable-version>) ensuring the new
<stable-version> is the proper semantic or released version for production.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.