aboutsummaryrefslogtreecommitdiff
path: root/mod/mod-ci-github.cxx
diff options
context:
space:
mode:
authorFrancois Kritzinger <francois@codesynthesis.com>2025-01-17 15:24:46 +0200
committerFrancois Kritzinger <francois@codesynthesis.com>2025-01-20 09:01:15 +0200
commit734a694e3128918f5ee9cda62bd664914a28e7f7 (patch)
tree306b27a849055b14b61a7742e06039b738f740be /mod/mod-ci-github.cxx
parent388ae27a28b5c950507abccd11262c2bb78e608f (diff)
ci-github: Remove details_url argument from gq_update_check_run()
We now always set details_url upon creation and never needs to be updated again.
Diffstat (limited to 'mod/mod-ci-github.cxx')
-rw-r--r--mod/mod-ci-github.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx
index c15be43..9717cb8 100644
--- a/mod/mod-ci-github.cxx
+++ b/mod/mod-ci-github.cxx
@@ -1323,7 +1323,6 @@ namespace brep
if (gq_update_check_run (error, bcr, iat->token,
repo_node_id, cr.check_run.node_id,
- nullopt /* details_url */,
build_state::built, br))
{
l3 ([&]{trace << "updated check_run { " << bcr << " }";});
@@ -1337,7 +1336,6 @@ namespace brep
if (gq_update_check_run (error, ccr, iat->token,
repo_node_id, *sd.conclusion_node_id,
- nullopt /* details_url */,
build_state::built, move (br)))
{
l3 ([&]{trace << "updated conclusion check_run { " << ccr << " }";});
@@ -1386,7 +1384,6 @@ namespace brep
//
if (gq_update_check_run (error, ccr, iat->token,
repo_node_id, *sd.conclusion_node_id,
- nullopt /* details_url */,
build_state::built, move (br)))
{
l3 ([&]{trace << "updated conclusion check_run { " << ccr << " }";});
@@ -1619,7 +1616,6 @@ namespace brep
//
if (gq_update_check_run (error, bcr, iat->token,
repo_node_id, *bcr.node_id,
- nullopt /* details_url */,
build_state::built, br))
{
l3 ([&]{trace << "updated check_run { " << bcr << " }";});
@@ -1636,7 +1632,6 @@ namespace brep
//
if (gq_update_check_run (error, ccr, iat->token,
repo_node_id, *ccr.node_id,
- nullopt /* details_url */,
build_state::built, move (br)))
{
l3 ([&]{trace << "updated conclusion check_run { " << ccr << " }";});
@@ -1988,7 +1983,6 @@ namespace brep
iat->token,
sd.repository_node_id,
node_id,
- nullopt /* details_url */,
build_state::built,
move (br)))
{
@@ -2517,7 +2511,6 @@ namespace brep
iat->token,
sd.repository_node_id,
*cr->node_id,
- nullopt /* details_url */,
build_state::building))
{
// Do nothing further if the state was already built on GitHub (note
@@ -2833,7 +2826,6 @@ namespace brep
iat->token,
sd.repository_node_id,
*cr.node_id,
- details_url (b),
build_state::built,
move (br)))
{
@@ -2897,7 +2889,6 @@ namespace brep
iat->token,
sd.repository_node_id,
*sd.conclusion_node_id,
- nullopt /* details_url */,
build_state::built,
move (br)))
{