Add migration notice to README#135
Conversation
This repository has been migrated to openstack-k8s-operators/lightspeed-operator.
📝 WalkthroughWalkthroughAdded an archive/migration notice at the top of README.md indicating the repository has moved to openstack-k8s-operators/lightspeed-operator, directing new issues and pull requests to that repository. ChangesREADME Migration Notice
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@README.md`:
- Around line 1-2: The README notice is asserting that the repository “is
archived” before that state is actually enabled. Update the migration message in
the README text to avoid the hard archived claim for now, or phrase it in
future/conditional terms until the repo is officially archived.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| > **This repository has been migrated to [openstack-k8s-operators/lightspeed-operator](https://github.com/openstack-k8s-operators/lightspeed-operator). Please open all new issues and pull requests there. This repository is archived and no longer maintained.** | ||
|
|
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== root files =="
git ls-files | sed -n '1,120p'
echo
echo "== README excerpt =="
if git ls-files README.md >/dev/null 2>&1; then
nl -ba README.md | sed -n '1,20p'
fi
echo
echo "== git remotes =="
git remote -v || true
echo
echo "== repo metadata hints =="
rg -n --hidden --glob '!**/.git/**' -e 'archiv|archived|no longer maintained|migrated to' README.md .github . || trueRepository: openstack-lightspeed/operator
Length of output: 5345
🏁 Script executed:
#!/bin/bash
set -euo pipefail
# Try to inspect the upstream repository metadata if a GitHub remote exists.
remote_url="$(git remote get-url origin 2>/dev/null || true)"
printf 'origin=%s\n' "${remote_url:-<none>}"
case "$remote_url" in
*github.com*)
# Normalize to owner/repo where possible.
repo="$(printf '%s' "$remote_url" | sed -E 's#(git@|https://)github.com[:/]+##; s#\.git$##')"
printf 'repo=%s\n' "$repo"
if command -v gh >/dev/null 2>&1; then
gh api "repos/$repo" --jq '{full_name, archived, disabled, pushed_at, updated_at}' || true
else
echo "gh CLI not available"
fi
;;
*)
echo "No GitHub remote detected"
;;
esacRepository: openstack-lightspeed/operator
Length of output: 413
Avoid saying this repository is archived yet.
Keep the notice aligned with the repo state; drop the hard “is archived” claim or switch to future tense until the archive setting is enabled.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@README.md` around lines 1 - 2, The README notice is asserting that the
repository “is archived” before that state is actually enabled. Update the
migration message in the README text to avoid the hard archived claim for now,
or phrase it in future/conditional terms until the repo is officially archived.
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lpiwowar, omkarjoshi0304, umago The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
cc9a395
into
openstack-lightspeed:main
Summary
Summary by CodeRabbit