Skip to content

Commit

Permalink
Add last_update_git_author_name to RepositoryBranch proto (#2406)
Browse files Browse the repository at this point in the history
Add `last_update_git_author_name` field to contain a author name of the
most recent associated git commit for the branch.
It may be null if the last branch update has no git commit associated.
  • Loading branch information
seankimdev committed Aug 31, 2023
1 parent 64b7113 commit da8b588
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 69 deletions.

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

3 changes: 3 additions & 0 deletions proto/buf/alpha/registry/v1alpha1/repository_branch.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ message RepositoryBranch {
google.protobuf.Timestamp last_update_time = 5;
// The ID of the user who updated the branch.
string last_update_user_id = 6;
// The author name of the most recent associated git commit of the branch. May be null
// if the last branch update doesn't have a git commit associated.
string last_update_git_author_name = 7;
}

// RepositoryBranchService is the Repository branch service.
Expand Down

0 comments on commit da8b588

Please sign in to comment.