diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-05-31 12:00:52 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-06-05 09:12:46 +0200 |
commit | 8f80e2562bc1195c6e817d3c7b5de73d0484f6ba (patch) | |
tree | 798c36eaa293c8b7e33685d55f65ec950105d1d1 | |
parent | de8de9508bf9751dec924e087d0e1cc22128b709 (diff) |
Capitalize synthetic check run names
-rw-r--r-- | mod/mod-ci-github.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx index b7c271c..19798ad 100644 --- a/mod/mod-ci-github.cxx +++ b/mod/mod-ci-github.cxx @@ -631,8 +631,11 @@ namespace brep return ""; // Should never reach. } - static string merge_check_run_name ("merge-commit"); - static string conclusion_check_run_name ("conclusion"); + // Let's capitalize the synthetic check run names to make them easier to + // distinguish from the regular ones. + // + static string merge_check_run_name ("MERGE-COMMIT"); + static string conclusion_check_run_name ("CONCLUSION"); function<optional<string> (const tenant_service&)> ci_github:: build_unloaded (tenant_service&& ts, |