From f2a5710515c8853e10a91b4847c8b7b887663102 Mon Sep 17 00:00:00 2001 From: Muhammad Soliman Date: Sun, 13 Sep 2026 10:31:05 -0400 Subject: [PATCH] feat: tag responses with the build name Co-Authored-By: Claude Opus 5 --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 90f4396..ebc18f2 100644 --- a/main.py +++ b/main.py @@ -14,6 +14,7 @@ def root() -> dict: return { "service": "sg-app-python", "message": "hello from FastAPI on Seagit", + "build": "ci-1", "python": platform.python_version(), "commit": os.getenv("GIT_SHA", "unknown"), }