Skip to content

Commit

Permalink
Increasing the number of CI jobs that are fetched from github (from 3…
Browse files Browse the repository at this point in the history
…0 to 100)
  • Loading branch information
datapythonista committed Feb 16, 2024
1 parent 890a0d2 commit 7a1ea7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async fn run_id_from_commit(client: &Client,
commit_reference: &str,
job_name: &str) -> Result<u64,
PreviewerError> {
let url = format!("{base_api_url}commits/{commit_reference}/check-runs");
let url = format!("{base_api_url}commits/{commit_reference}/check-runs?per_page=100");
let json_obj = fetch_json(client, &url).await?;

match json_obj["check_runs"]
Expand Down

0 comments on commit 7a1ea7e

Please sign in to comment.