Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix(registry): rename podman gh organization#10288

Merged
jdx merged 1 commit into
jdx:mainfrom
TyceHerrman:fix/podman-registry
Jun 9, 2026
Merged

fix(registry): rename podman gh organization#10288
jdx merged 1 commit into
jdx:mainfrom
TyceHerrman:fix/podman-registry

Conversation

@TyceHerrman

@TyceHerrman TyceHerrman commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

podman gh org changed names 6/1/26

Summary by CodeRabbit

  • Chores
    • Updated Podman container tools registry backend configuration to reference the current source repository location.

@coderabbitai

coderabbitai Bot commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

The Podman backend entry in the registry configuration is updated to reference the new GitHub repository location. The full source attribute is changed from github:containers/podman to github:podman-container-tools/podman, reflecting the repository move to the podman-container-tools organization.

Changes

Podman registry backend update

Layer / File(s) Summary
Backend source reference update
registry/podman.toml
The full source reference for the Podman backend is updated from github:containers/podman to github:podman-container-tools/podman.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 A hop and a skip, the repo takes flight,
From containers to podman-tools, oh what a sight!
One line updated, a path made anew,
The registry knows where to find what is true.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: updating the Podman GitHub organization reference from 'containers/podman' to 'podman-container-tools/podman' in the registry configuration.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands and usage tips.

@greptile-apps

greptile-apps Bot commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

Updates the podman registry entry to reflect the GitHub organization rename that took effect June 1, 2026, replacing github:containers/podman with github:podman-container-tools/podman.

  • The new organization (podman-container-tools/podman) is confirmed to exist on GitHub and hosts the canonical podman repository, with active releases.
  • The asdf:tvon/asdf-podman backend entry is unchanged.

Confidence Score: 5/5

Single-line config update swapping a GitHub org name; the new org is confirmed live and canonical.

The change is a one-line update to a registry TOML file. The new GitHub organization (podman-container-tools/podman) exists and hosts the active podman project. No logic, build, or runtime paths are affected.

No files require special attention.

Important Files Changed

Filename Overview
registry/podman.toml Updates the primary GitHub backend URL for podman from containers/podman to podman-container-tools/podman following the org rename confirmed at github.com/podman-container-tools/podman.

Reviews (1): Last reviewed commit: "fix(registry): rename podman gh organiza..." | Re-trigger Greptile

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

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 `@registry/podman.toml`:
- Line 4: The registry entry uses the wrong canonical repo reference: update the
toml key full currently set to "github:podman-container-tools/podman" to
"github:containers/podman" in the podman registry file (the 'full' field) so it
points to the canonical Podman repo; alternatively, if you intend to keep the
podman-container-tools value, add a short justification comment that the
redirect/mirror behavior is intentionally relied upon.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 6cee6135-78da-4142-a9d2-43895d13d3b0

📥 Commits

Reviewing files that changed from the base of the PR and between 4f04897 and c6db158.

📒 Files selected for processing (1)
  • registry/podman.toml

Comment thread registry/podman.toml

[[backends]]
full = "github:containers/podman"
full = "github:podman-container-tools/podman"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🌐 Web query:

Did the Podman GitHub repository move from containers/podman to podman-container-tools/podman in June 2026?

💡 Result:

No, the Podman GitHub repository did not move to podman-container-tools/podman in June 2026. The official GitHub repository for Podman remains at github.com/containers/podman [1][2]. While a new organization named podman-container-tools was established as part of the project's transition to Cloud Native Computing Foundation (CNCF) infrastructure, it serves to house CNCF-related projects and infrastructure rather than replacing the primary containers/podman repository [3]. Discussions within the community identified podman-container-tools as the chosen name for this new organization to facilitate the move of CI infrastructure [3]. Consequently, while some automated processes or related sub-projects may reference the new organization [4], the main Podman codebase continues to be maintained under the containers organization [1][2].

Citations:


🏁 Script executed:

#!/bin/bash
# Search for any remaining references to containers/podman in the codebase

echo "=== Searching for references to 'containers/podman' ==="
rg -n 'containers/podman' --type-not lock

echo ""
echo "=== Searching for references to 'github.com/containers/podman' ==="
rg -n 'github\.com/containers/podman'

Repository: jdx/mise

Length of output: 247


Fix Podman backend full reference in registry/podman.toml

  • The canonical Podman GitHub repository is still github.com/containers/podman; podman-container-tools is for CNCF/CI-related transition infrastructure, not a replacement repo.
  • Update line 4 (full = "github:podman-container-tools/podman") to github:containers/podman, or explicitly justify that the new reference is supported via redirect/mirror behavior.
  • Repo search shows no other containers/podman references, so this change is the likely sole source of mismatch.
🤖 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 `@registry/podman.toml` at line 4, The registry entry uses the wrong canonical
repo reference: update the toml key full currently set to
"github:podman-container-tools/podman" to "github:containers/podman" in the
podman registry file (the 'full' field) so it points to the canonical Podman
repo; alternatively, if you intend to keep the podman-container-tools value, add
a short justification comment that the redirect/mirror behavior is intentionally
relied upon.

@jdx jdx merged commit 38fce40 into jdx:main Jun 9, 2026
34 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants