diff options
Diffstat (limited to 'mod/mod-ci-github.cxx')
-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, |