From 62ec3a690f59814d28ff5c4c1e7dd9fd1fab7e7b Mon Sep 17 00:00:00 2001 From: Francois Kritzinger Date: Thu, 19 Dec 2024 08:55:11 +0200 Subject: ci-github: Fix bug found during testing If tenant is archived when a check run is re-requested, we were updating (by creating) the build CR without having set its name. --- mod/mod-ci-github.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx index f8cc147..773ca5f 100644 --- a/mod/mod-ci-github.cxx +++ b/mod/mod-ci-github.cxx @@ -943,6 +943,7 @@ namespace brep check_run& bcr (check_runs[0]); // Build check run check_run& ccr (check_runs[1]); // Conclusion check run + bcr.name = cr.check_run.name; ccr.name = conclusion_check_run_name; // Load the service data, failing the check runs if the tenant has been -- cgit v1.1