File tree Expand file tree Collapse file tree
src/commands/list/ci_status Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ cargo bench --bench list skeleton/warm
1313# Run specific group (all variants)
1414cargo bench --bench list full
1515
16- # GH #461 scenario (200 branches on rust-lang/rust)
16+ # GH #461 scenario (50 branches at varying history depths on rust-lang/rust)
1717cargo bench --bench list real_repo_many_branches
1818
1919# All list benchmarks (~1 hour)
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ pub(super) fn detect_github_commit_checks(
270270/// GitHub PR info from `gh pr list --json ...`
271271///
272272/// Note: We include `headRepositoryOwner` for client-side filtering by source fork.
273- /// See `parse_owner_repo()` for why this is necessary.
273+ /// See the `# Filtering Strategy` docs on [`detect_github`] for why this is necessary.
274274///
275275/// Note: We don't include `state` because we already filter with `--state open`.
276276#[ derive( Debug , Deserialize ) ]
@@ -301,7 +301,7 @@ pub(crate) struct GitHubPrInfo {
301301 pub status_check_rollup : Option < Vec < GitHubCheck > > ,
302302 pub url : Option < String > ,
303303 /// The owner of the repository the PR's head branch comes from.
304- /// Used to filter PRs by source fork (see `parse_owner_repo()` ).
304+ /// Used to filter PRs by source fork (see the `# Filtering Strategy` docs on [`detect_github`] ).
305305 #[ serde( rename = "headRepositoryOwner" ) ]
306306 pub head_repository_owner : Option < HeadRepositoryOwner > ,
307307 /// GraphQL review decision: "APPROVED", "CHANGES_REQUESTED",
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ pub(super) fn detect_gitlab_pipeline(
302302/// Use [`fetch_mr_details`] with the `iid` to get complete MR info.
303303///
304304/// We include `source_project_id` for client-side filtering by source project.
305- /// See `parse_owner_repo()` for why we filter by source, not by author.
305+ /// See the `# Filtering Strategy` docs on [`detect_gitlab`] for why we filter by source, not by author.
306306#[ derive( Debug , Default , Deserialize ) ]
307307struct GitLabMrAuthor {
308308 #[ serde( default ) ]
You can’t perform that action at this time.
0 commit comments