Skip to content
This repository was archived by the owner on Jul 13, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
> **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.**

Comment on lines +1 to +2

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 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 . || true

Repository: 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"
    ;;
esac

Repository: 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.

# OpenStack Lightspeed Operator

OpenStack Lightspeed Operator is a generative AI-based virtual assistant for
Expand Down
Loading