From c9687d92832f1d72d7af14c30b9523b83f894dc4 Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Wed, 8 Jul 2026 14:35:52 +0200 Subject: [PATCH] feat: add CI and MCP to MetaOrigin enum --- src/apify_shared/consts.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/apify_shared/consts.py b/src/apify_shared/consts.py index 4dc6df6..2c1168c 100644 --- a/src/apify_shared/consts.py +++ b/src/apify_shared/consts.py @@ -350,6 +350,12 @@ class MetaOrigin(str, Enum): CLI = 'CLI' """Actor run started using the Apify command-line interface.""" + CI = 'CI' + """Actor run started from a CI/CD pipeline (e.g. GitHub Actions).""" + + MCP = 'MCP' + """Actor run started through the Apify client triggered from the Apify MCP server.""" + class StorageGeneralAccess(str, Enum): """Storage setting determining how others can access the storage.