We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1091541 + fef2551 commit a372837Copy full SHA for a372837
src/github.rs
@@ -1928,10 +1928,17 @@ impl GithubClient {
1928
#[derive(Debug, serde::Deserialize)]
1929
pub struct GithubCommit {
1930
pub sha: String,
1931
- pub commit: GitCommit,
+ pub commit: GithubCommitCommitField,
1932
pub parents: Vec<Parent>,
1933
}
1934
1935
+#[derive(Debug, serde::Deserialize)]
1936
+pub struct GithubCommitCommitField {
1937
+ pub author: GitUser,
1938
+ pub message: String,
1939
+ pub tree: GitCommitTree,
1940
+}
1941
+
1942
1943
pub struct GitCommit {
1944
0 commit comments