diff options
Diffstat (limited to 'mod/mod-ci-github.cxx')
-rw-r--r-- | mod/mod-ci-github.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx index c62f33e..5570beb 100644 --- a/mod/mod-ci-github.cxx +++ b/mod/mod-ci-github.cxx @@ -1530,7 +1530,7 @@ namespace brep conclusion_building_summary}; if (gq_create_check_runs (error, check_runs, iat->token, - repo_node_id, head_sha, cr.check_run.app_id)) + cr.check_run.app_id, repo_node_id, head_sha)) { assert (bcr.state == build_state::queued); assert (ccr.state == build_state::building); @@ -2009,9 +2009,9 @@ namespace brep if (gq_create_check_run (error, cr, iat->token, + sd.app_id, sd.repository_node_id, sd.report_sha, - sd.app_id, details_url (tenant_id), build_state::building, title, summary)) @@ -2414,9 +2414,9 @@ namespace brep if (gq_create_check_runs (error, crs, iat->token, + sd.app_id, sd.repository_node_id, - sd.report_sha, - sd.app_id)) + sd.report_sha)) { for (const check_run& cr: crs) { @@ -2899,9 +2899,9 @@ namespace brep if (gq_create_check_run (error, cr, iat->token, + sd.app_id, sd.repository_node_id, sd.report_sha, - sd.app_id, details_url (b), move (br))) { |