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

added support for field author.login and committer.login to /commits call #1837

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions src/main/java/org/kohsuke/github/GHPullRequestCommitDetail.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
justification = "JSON API")
public class GHPullRequestCommitDetail {
private GHPullRequest owner;
private GHCommitDetailAuthor author;
private GHCommitDetailAuthor committer;

/**
* Wrap up.
Expand All @@ -52,6 +54,20 @@ void wrapUp(GHPullRequest owner) {
this.owner = owner;
}

/**
* Type for the GitHub user
*/
public static class GHCommitDetailAuthor {
String login;

/**
* GitHub user login
*/
public String getLogin() {
return login;
}
}

/**
* The type Authorship.
*
Expand Down Expand Up @@ -285,4 +301,20 @@ public CommitPointer[] getParents() {
System.arraycopy(parents, 0, newValue, 0, parents.length);
return newValue;
}

/**
* Gets the GitHub user - author of the commit.
*
*/
public GHCommitDetailAuthor getAuthor() {
return author;
}

/**
* Gets the GitHub user - committer of the commit.
*
*/
public GHCommitDetailAuthor getCommitter() {
return committer;
}
}