/** * Read with the installation token that already clones and pushes, not through * `getInstallationOctokit`: the Platform deployment answers that with a * pull-request-only stub, so `repos.*` is undefined there at runtime while the * cast keeps the compiler quiet. */ import type { VersionControl } from '../../capabilities/version-control.js'; export interface RepositoryCommit { sha: string; message: string; author: string | null; avatarUrl: string | null; committedAt: string | null; url: string; } export declare function listRepositoryCommits(github: { versionControl: Pick; }, input: { orgId: string; project: { repository: { id: string; slug: string; }; }; branch: string; limit: number; }): Promise; //# sourceMappingURL=commits.d.ts.map