diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-12-04 08:57:25 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-12-04 08:57:25 +0200 |
commit | 8afb3395a2e26a72c571e1dd8dc47139cacbb125 (patch) | |
tree | 65a232068c9cfb5bdb071b8072a7972bf0272755 /mod/mod-ci-github-gh.cxx | |
parent | 466f732672fae5619ef6f63a7de1b1bd1fe1a9fc (diff) |
Review
Diffstat (limited to 'mod/mod-ci-github-gh.cxx')
-rw-r--r-- | mod/mod-ci-github-gh.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mod-ci-github-gh.cxx b/mod/mod-ci-github-gh.cxx index a25e52c..99e19cc 100644 --- a/mod/mod-ci-github-gh.cxx +++ b/mod/mod-ci-github-gh.cxx @@ -53,15 +53,15 @@ namespace brep switch (rs) { case result_status::success: - return "SUCCESS"; + return "success"; case result_status::warning: - return warning_success ? "SUCCESS" : "FAILURE"; + return warning_success ? "success" : "failure"; case result_status::error: case result_status::abort: case result_status::abnormal: - return "FAILURE"; + return "failure"; // Valid values we should never encounter. // |