Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use reference in favour of name for clarity in ListGitMetadataForReference rpc #2264

Merged
merged 1 commit into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
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
134 changes: 62 additions & 72 deletions private/gen/proto/go/buf/alpha/registry/v1alpha1/reference.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions proto/buf/alpha/registry/v1alpha1/reference.proto
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,12 @@ message GetReferenceByNameResponse {
}

message ListGitCommitMetadataForReferenceRequest {
// Name of the requested reference.
string name = 1;
// String that represents the name of the reference.
string reference = 1;
// Owner of the repository the reference belongs to.
string owner = 2;
// Name of the repository the reference belongs to.
string repository_name = 3;
// String that represents the name of the reference.
string reference = 4;
}

message ListGitCommitMetadataForReferenceResponse {
Expand Down
Loading