From c839a6793cf0236630666586da109a6d7fb44bd9 Mon Sep 17 00:00:00 2001 From: Alexandros Sapranidis Date: Tue, 19 Mar 2024 18:32:26 +0200 Subject: [PATCH] Make github context start with capital letter Signed-off-by: Alexandros Sapranidis --- .buildkite/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.py b/.buildkite/pipeline.py index 8988cde09cd..f2585dd9704 100755 --- a/.buildkite/pipeline.py +++ b/.buildkite/pipeline.py @@ -86,7 +86,7 @@ def create_entity(self) -> dict[str, Any]: "notify": [ { "github_commit_status": { - "context": f"{self.project}: {self.name}", + "context": f"{self.project.title()}: {self.name}", } } ],