NPE on the line "final GHCommitStatus lastStatus = commit.getLastStatus();", because owner is null.
public Date getDate(final GHTag tag) throws Exception {
final GHCommit commit = tag.getCommit();
final GHCommitStatus lastStatus = commit.getLastStatus();
return lastStatus.getCreatedAt();
}
It looks like there is no way to retrieve information about tag/commit date.
NPE on the line "final GHCommitStatus lastStatus = commit.getLastStatus();", because owner is null.
It looks like there is no way to retrieve information about tag/commit date.