Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/apify_shared/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading