aboutsummaryrefslogtreecommitdiff
path: root/mod/mod-ci-github-gq.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-05-02 11:47:43 +0200
committerFrancois Kritzinger <francois@codesynthesis.com>2024-05-13 09:17:32 +0200
commitc6fae056f7f9fe7430f7ab0f8ea9896348b2e983 (patch)
treee03baf9dd68a4920c5d393d90f39e4c669e57a37 /mod/mod-ci-github-gq.cxx
parent8f077dc4d89ea85e8e2ecee5513050fc7700758a (diff)
Review
Diffstat (limited to 'mod/mod-ci-github-gq.cxx')
-rw-r--r--mod/mod-ci-github-gq.cxx24
1 files changed, 14 insertions, 10 deletions
diff --git a/mod/mod-ci-github-gq.cxx b/mod/mod-ci-github-gq.cxx
index d65d701..8e436e9 100644
--- a/mod/mod-ci-github-gq.cxx
+++ b/mod/mod-ci-github-gq.cxx
@@ -317,11 +317,12 @@ namespace brep
// Serialize `createCheckRun` mutations for one or more builds to GraphQL.
//
- // The `co` (conclusion) argument is required if the build_state is built
+ // The conclusion argument (`co`) is required if the build_state is built
// because GitHub does not allow a check run status of completed without a
// conclusion.
//
- // `du` can be empty for queued but not for the other states.
+ // The details URL argument (`du`) can be empty for queued but not for the
+ // other states.
//
static string
gq_mutation_create_check_runs (const string& ri, // Repository ID
@@ -440,7 +441,8 @@ namespace brep
// Empty details URL because it's not available until building.
//
- string rq (gq_serialize_request (
+ string rq (
+ gq_serialize_request (
gq_mutation_create_check_runs (rid, hs, "", crs, gh_to_status (st))));
return gq_mutate_check_runs (error, crs, iat, move (rq), st);
@@ -466,7 +468,8 @@ namespace brep
vector<check_run> crs {move (cr)};
- string rq (gq_serialize_request (
+ string rq (
+ gq_serialize_request (
gq_mutation_create_check_runs (rid,
hs,
du,
@@ -491,16 +494,17 @@ namespace brep
build_state st,
optional<gq_built_result> br)
{
- // Must have a result if state is built.
+ // Must have a result if state is built. @@ du?
//
assert (st != build_state::built || br);
string rq (
- gq_serialize_request (gq_mutation_update_check_run (rid,
- nid,
- du,
- gh_to_status (st),
- move (br))));
+ gq_serialize_request (
+ gq_mutation_update_check_run (rid,
+ nid,
+ du,
+ gh_to_status (st),
+ move (br))));
vector<check_run> crs {move (cr)};