Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt

Use this file to discover all available pages before exploring further.

Fetch one change and its file/conflict summary.
change = await mesa.changes.get(
    repo="app",
    change_id="zyxwvutsrqponmlkzyxwvutsrqponmlk",
)

print(change.files)
print(change.conflicts)

Options

repo
str
required
Repository name.
change_id
str
required
Mesa change ID.
org
str | None
Organization override.

Response

id
str
Mesa change ID.
current_commit_oid
str
Git commit OID for the current snapshot of this change.
is_conflicted
bool
Whether the current commit still contains unresolved conflicts.
files
list[str]
Repository-relative paths changed by this change.
conflicts
list[str]
Repository-relative paths that still contain conflicts.

Required scope

read