{"id":17749710,"url":"https://github.com/stscoundrel/goodbrother-rs","last_synced_at":"2026-01-19T23:02:01.507Z","repository":{"id":43396720,"uuid":"441865492","full_name":"stscoundrel/goodbrother-rs","owner":"stscoundrel","description":"List open PRs in Github by user account. Rust version.","archived":false,"fork":false,"pushed_at":"2024-05-01T21:40:29.000Z","size":44,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-27T19:54:09.726Z","etag":null,"topics":["github-api","goodbrother","helper","pull-requests","rust"],"latest_commit_sha":null,"homepage":"https://docs.rs/goodbrother","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stscoundrel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-26T10:38:45.000Z","updated_at":"2022-11-05T15:14:25.000Z","dependencies_parsed_at":"2024-05-01T22:59:33.848Z","dependency_job_id":"40b3ab20-9150-4824-80ef-4764854ea225","html_url":"https://github.com/stscoundrel/goodbrother-rs","commit_stats":{"total_commits":36,"total_committers":3,"mean_commits":12.0,"dds":"0.16666666666666663","last_synced_commit":"5ab2c134a4b835b8cc2ebe75b1db47e7ecc02739"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":"stscoundrel/rust-template","purl":"pkg:github/stscoundrel/goodbrother-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stscoundrel%2Fgoodbrother-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stscoundrel%2Fgoodbrother-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stscoundrel%2Fgoodbrother-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stscoundrel%2Fgoodbrother-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stscoundrel","download_url":"https://codeload.github.com/stscoundrel/goodbrother-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stscoundrel%2Fgoodbrother-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28588968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-api","goodbrother","helper","pull-requests","rust"],"created_at":"2024-10-26T11:24:34.579Z","updated_at":"2026-01-19T23:02:01.476Z","avatar_url":"https://github.com/stscoundrel.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Goodbrother\n\nList open PRs in Github by user. Rust port of original TypeScript library.\n\n## Motivation\n\nIf you have many repos that receive regular updades with Dependabot, you're simply likely to miss some of them. I occasionally only found PRs when I get notification that they were closed in favor of a even newer version.\n\nGoodbrother is there to let me know if I still have some open.\n\n### Install\n\n`cargo add goodbrother`\n\nOr add this to your `Cargo.toml`:\n\n```toml\n[dependencies]\ngoodbrother = \"1.1.0\"\n```\n\n### Usage\n\nListing all pull requests:\n\n```rust\nuse goodbrother::{get_pull_requests_by_user, PullRequest};\n\n// Fetch list of open PRs by user.\nlet username = \"stscoundrel\";\n\n// Returns Result, which may be error due to Github API connections.\nlet result = get_pull_requests_by_user(username).unwrap();\n\n// Result is a vector of PullRequest structs. Eg:\n// {\n//     id: 1068208284,\n//     name: Bump eslint-config-airbnb-base from 14.2.1 to 15.0.0,\n//     link: https://github.com/stscoundrel/gatsby-source-plugin-zoega/pull/18,\n//     is_dependabot: true,\n//     repository: stscoundrel/gatsby-source-plugin-zoega,\n// }\n```\n\nListing pull requests grouped by repos:\n\n```rust\nuse goodbrother::{get_grouped_pull_requests_by_user, Repository};\n\n// Fetch list of open PRs by user.\nlet username = \"stscoundrel\";\n\n// Returns Result, which may be error due to Github API connections.\nlet result = get_grouped_pull_requests_by_user(username).unwrap();\n\n// Result is a vector of Repository structs. Eg:\n// {\n//     name: goodbrother\n//     pull_requests: PullRequest[],\n// }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstscoundrel%2Fgoodbrother-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstscoundrel%2Fgoodbrother-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstscoundrel%2Fgoodbrother-rs/lists"}