Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds repo-focused CLI functionality by introducing a new kosli get repo command and extending kosli list repos with additional filtering options, aligning with server changes referenced in kosli-dev/server#4547.
Changes:
- Add
get reposubcommand with optional--providerand--repo-idfilters. - Extend
list reposto support--name,--provider, and--repo-idfilters and includePROVIDERin table output. - Bump indirect dependency
github.com/cloudflare/circland adjust retry comment / Dockerfile stage syntax.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| internal/requests/requests.go | Updates retry-policy comment related to 409 retry handling. |
| go.mod | Bumps indirect dependency github.com/cloudflare/circl to v1.6.3. |
| go.sum | Updates checksums for github.com/cloudflare/circl v1.6.3. |
| cmd/kosli/listRepos.go | Adds query-parameter filters and prints provider column in table output. |
| cmd/kosli/listRepos_test.go | Updates fixtures/regex and adds coverage for new list filters. |
| cmd/kosli/getRepo.go | Introduces new get repo command implementation with provider/repo-id filters. |
| cmd/kosli/getRepo_test.go | Adds tests for get repo behavior and filtering. |
| cmd/kosli/get.go | Registers get repo under the get command group. |
| Dockerfile | Normalizes multi-stage alias keyword casing (AS builder). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ToreMerkely
approved these changes
Feb 27, 2026
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.
also update list repos to add provider and repo-id filters.
related to kosli-dev/server#4547