diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-11-14 10:41:19 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-11-14 13:18:45 +0200 |
commit | c5c2f6dd99e575b1521bd158bc4cffad50279c72 (patch) | |
tree | 5a7fffd48186171e566859e7f3be46bf59ff9088 /mod/mod-ci-github-gq.cxx | |
parent | 002c76ca8142a812fb5aa6fe7e640bffecaa73c4 (diff) |
Add function gq_update_or_create_check_run()
Diffstat (limited to 'mod/mod-ci-github-gq.cxx')
-rw-r--r-- | mod/mod-ci-github-gq.cxx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mod/mod-ci-github-gq.cxx b/mod/mod-ci-github-gq.cxx index 0868987..4d1c583 100644 --- a/mod/mod-ci-github-gq.cxx +++ b/mod/mod-ci-github-gq.cxx @@ -573,6 +573,23 @@ namespace brep return r; } + bool + gq_update_or_create_check_run (const basic_mark& error, + check_run& cr, + const string& iat, + const string& rid, + const optional<string>& nid, + const string& hs, + const optional<string>& du, + build_state st, + optional<gq_built_result> br) + { + if (nid) + return gq_update_check_run (error, cr, iat, rid, *nid, du, st, br); + else + return gq_create_check_run (error, cr, iat, rid, hs, du, st, br); + } + // Serialize a GraphQL query that fetches a pull request from GitHub. // static string |