Conversation
…runners The branch-checks.yml workflow was inherited from NVIDIA/OpenShell and uses self-hosted runner labels (build-amd64, build-arm64) and a private NVIDIA container image (ghcr.io/nvidia/openshell/ci:latest) that do not exist in the kagenti fork. All 6 jobs queue indefinitely waiting for runners that will never appear. The equivalent checks (Rust, Python, Markdown) are already covered by kagenti-ci.yml using ubuntu-latest runners and pass correctly. Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com> Signed-off-by: Paolo Dettori <dettori@us.ibm.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/branch-checks.yml, which was inherited from NVIDIA/OpenShell and hardcodes self-hosted runner labels (build-amd64,build-arm64) and a private NVIDIA container image (ghcr.io/nvidia/openshell/ci:latest) that do not exist in the kagenti forktotal_count: 0self-hosted runners registered)kagenti-ci.ymlusingubuntu-latestrunners, which pass correctlyRoot Cause
branch-checks.ymldepends on two NVIDIA-internal resources unavailable in the fork:build-amd64/build-arm64— no such runners registered inkagenti/OpenShellghcr.io/nvidia/openshell/ci:latest— NVIDIA's GHCR, not accessible from the forkGitHub queues these jobs but never schedules them, resulting in perpetual
pendingstatus on every PR.Assisted-By: Claude (Anthropic AI) noreply@anthropic.com