fix: export SourceKind from pkg/provider - #1064
Open
devsy-app[bot] wants to merge 2 commits into
Open
Conversation
ClassifyVersionSource is an exported function but returned the unexported sourceKind type (and its unexported constants), flagged by Codefactor (Maintainability: exported func returning unexported type). Export the type and constants as SourceKind/SourceUnknown/SourceGitHub/SourceManifestURL/SourceLocal so the API is usable by external callers. No behavior change; tests updated to the exported names.
✅ Deploy Preview for devsydev canceled.
|
✅ Deploy Preview for images-devsy-sh canceled.
|
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 0 |
| Duplication | 0 |
AI Reviewer: run a review on demand. To trigger the first review automatically, go to your organization or repository integration settings. AI can make mistakes. Always validate suggestions.
TIP This summary will be updated as you push new changes.
skevetter
marked this pull request as ready for review
August 17, 2026 05:41
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.
Codefactor fix: exported func returns unexported type
6a77b13d5b1ec0b4ee20c45e(Maintainability, Minor)pkg/provider/versions.go:30ClassifyVersionSourcereturns unexported typesourceKind, making the return value unusable by external callers of the public API.Change
Export the
sourceKindtype and its constants soClassifyVersionSource's public signature is usable by external callers:sourceKind→SourceKindsourceUnknown→SourceUnknownsourceGitHub→SourceGitHubsourceManifestURL→SourceManifestURLsourceLocal→SourceLocalThe internal call site in
ListVersionsForSourceand the table-driven test inversions_test.gowere updated to the exported names. No behavior change.Verification
task cli:format— cleantask cli:lint:ci— 0 issuestask cli:test—pkg/providerpasses. (Pre-existing known failurepkg/gitTestRepoClone*fails onorigin/mainalready; this change does not touchpkg/git.)This PR was created by an AI agent as part of an automated daily Codefactor issue fix job.