Skip to content

Commit 7a1ea7e

Browse files
Increasing the number of CI jobs that are fetched from github (from 30 to 100)
1 parent 890a0d2 commit 7a1ea7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/github.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async fn run_id_from_commit(client: &Client,
6363
commit_reference: &str,
6464
job_name: &str) -> Result<u64,
6565
PreviewerError> {
66-
let url = format!("{base_api_url}commits/{commit_reference}/check-runs");
66+
let url = format!("{base_api_url}commits/{commit_reference}/check-runs?per_page=100");
6767
let json_obj = fetch_json(client, &url).await?;
6868

6969
match json_obj["check_runs"]

0 commit comments

Comments
 (0)