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
List all forks of an organization owned by the currently authenticated user.
For example, in
use octocrab::Octocrab; #[tokio::main] async fn main() -> octocrab::Result<()> { let token = std::env::var("GITHUB_TOKEN").expect("GITHUB_TOKEN env variable is required"); let octocrab = Octocrab::builder().personal_token(token).build()?; let my_repos = octocrab .current() .list_repos_for_authenticated_user() .type_("owner") .sort("updated") .per_page(100) .send() .await?; for repo in my_repos { println!("{}", repo.name); } Ok(()) }
I would like to replace list_repos_for_authenticated_user() with something like list_repos_for_authenticated_user("myorg").
list_repos_for_authenticated_user()
list_repos_for_authenticated_user("myorg")
The text was updated successfully, but these errors were encountered:
There are APIs for "List organizations for the authenticated user" https://docs.github.com/en/rest/orgs/orgs?apiVersion=2022-11-28#list-organizations-for-the-authenticated-user and "List organization repositories" https://docs.github.com/en/rest/repos#list-organization-repositories
Will they be enough? I can check the code then.
Sorry, something went wrong.
@dmgorsky Thanks, but those are not sufficient.
I want to pass in the organization since I have multiple orgs.
No branches or pull requests
List all forks of an organization owned by the currently authenticated user.
For example, in
I would like to replace
list_repos_for_authenticated_user()
with something likelist_repos_for_authenticated_user("myorg")
.The text was updated successfully, but these errors were encountered: