We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
merged
I'd like to list some pull request on a repository but it fails with the following error: "missing field merged at line 1 column 16964"
The following code fails for me with the error above:
let github = Github::new( concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")), None, )?; let pulls = github.repo("NixOS", "nixpkgs") .pulls() .list(&Default::default()) .await?;
hubcaps version: a9e6616
The text was updated successfully, but these errors were encountered:
I managed to get this to work by removing the line pub merged: bool, in Pull. Therefore wrapping that value in an Option seems to be necessary.
pub merged: bool,
Pull
Option
Sorry, something went wrong.
No branches or pull requests
🐛 Bug description
I'd like to list some pull request on a repository but it fails with the following error: "missing field
merged
at line 1 column 16964"👟 Steps to reproduce
The following code fails for me with the error above:
🌍 Your environment
hubcaps version: a9e6616
The text was updated successfully, but these errors were encountered: