Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Set up the GitHub CI resource in Python.
aiohttp
import os from mirage import Workspace, MountMode from mirage.resource.github_ci import GitHubCIConfig, GitHubCIResource config = GitHubCIConfig( token=os.environ["GITHUB_TOKEN"], owner="my-org", repo="my-repo", ) resource = GitHubCIResource(config=config) ws = Workspace({"/ci": resource}, mode=MountMode.READ)
token
owner
repo
days